search for: 9d95d567

Displaying 3 results from an estimated 3 matches for "9d95d567".

2019 Oct 03
0
[nbdkit PATCH 2/4] tests: Test retry with different fua/fast-zero flags
...ke <eblake@redhat.com> --- tests/Makefile.am | 2 + tests/test-retry-zero-flags.sh | 126 +++++++++++++++++++++++++++++++++ 2 files changed, 128 insertions(+) create mode 100755 tests/test-retry-zero-flags.sh diff --git a/tests/Makefile.am b/tests/Makefile.am index 60cba6c5..9d95d567 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -123,6 +123,7 @@ EXTRA_DIST = \ test-retry-extents.sh \ test-retry-readonly.sh \ test-retry-reopen-fail.sh \ + test-retry-zero-flags.sh \ test-shutdown.sh \ test-ssh.sh \ test.tcl \ @@ -1062,6 +1063,7 @@ TESTS += \ test-retry-r...
2019 Oct 03
7
[nbdkit PATCH 0/4] More work with retry safety
I'm still working on another set of patches to have reopen call .finalize/.prepare (so that another filter can safely appear between retry and the plugin), but for tonight, these are the patches I think are ready to go. Eric Blake (4): retry: Handle can_fua and can_fast_zero changes tests: Test retry with different fua/fast-zero flags server: Close backends if a filter's .open fails
2019 Oct 04
6
[nbdkit PATCH 0/5] Another round of retry fixes
I still don't have .prepare/.finalize working cleanly across reopen, but did find a nasty bug where a botched assertion means we failed to notice reads beyond EOF in both the xz and retry filter. Refactoring backend.c will make .finalize work easier. Eric Blake (5): xz: Avoid reading beyond EOF retry: Check size before transactions tests: Test retry when get_size values change