Displaying 5 results from an estimated 5 matches for "4b7aa22".
2019 Apr 25
0
[nbdkit PATCH v2 5/5] nbd: Test .extents
...y: Eric Blake <eblake@redhat.com>
---
tests/Makefile.am | 3 +
tests/test-nbd-extents.sh | 113 ++++++++++++++++++++++++++++++++++++++
2 files changed, 116 insertions(+)
create mode 100755 tests/test-nbd-extents.sh
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 08bdf85..4b7aa22 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -79,6 +79,7 @@ EXTRA_DIST = \
test.lua \
test-memory-largest.sh \
test-memory-largest-for-qemu.sh \
+ test-nbd-extents.sh \
test-nozero.sh \
test-null-extents.sh \
test_ocaml_plugin.ml \
@@ -530,6 +531,8 @@ TESTS += \
# nbd plu...
2019 Apr 27
0
[nbdkit PATCH 3/4] truncate: Test for safe multi-connect size handling
....
Signed-off-by: Eric Blake <eblake@redhat.com>
---
tests/Makefile.am | 2 +
tests/test-truncate4.sh | 85 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 87 insertions(+)
create mode 100755 tests/test-truncate4.sh
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 4b7aa22..4148793 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -122,6 +122,7 @@ EXTRA_DIST = \
test-truncate1.sh \
test-truncate2.sh \
test-truncate3.sh \
+ test-truncate4.sh \
test-truncate-extents.sh \
test-vddk.sh \
test-vddk-real.sh \
@@ -937,6 +938,7 @@ TESTS += \
test-trunca...
2019 Apr 29
1
Re: [nbdkit PATCH 3/4] truncate: Test for safe multi-connect size handling
...redhat.com>
> ---
> tests/Makefile.am | 2 +
> tests/test-truncate4.sh | 85 +++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 87 insertions(+)
> create mode 100755 tests/test-truncate4.sh
>
> diff --git a/tests/Makefile.am b/tests/Makefile.am
> index 4b7aa22..4148793 100644
> --- a/tests/Makefile.am
> +++ b/tests/Makefile.am
> @@ -122,6 +122,7 @@ EXTRA_DIST = \
> test-truncate1.sh \
> test-truncate2.sh \
> test-truncate3.sh \
> + test-truncate4.sh \
> test-truncate-extents.sh \
> test-vddk.sh \
> test-vddk-real...
2019 Apr 27
8
[nbdkit PATCH 0/4] Fix truncate handling of real_size
While working on adding assertions to pthread_mutex_lock calls, I
noticed that the truncate filter's use of mutex didn't really protect
us, and isn't really necessary. Cleaning that up also spotted a couple
of other potential cleanups.
Eric Blake (4):
filters: Drop useless .open callbacks
truncate: Fix corruption when plugin changes per-connection size
truncate: Test for safe
2019 Apr 25
6
[nbdkit PATCH v2 0/5] structured replies/.extents for nbd plugin
Updated based on other changes that have happened in the meantime:
- rely more on cleanup.h (throughout)
- split structured read for easier review (patch 2 and 3 were combined in v1)
- rely on nbdkit not leaking a server's partial answer (patch 3)
- add tests (patch 5)
- other bug fixes I found while testing it
- drop EOVERFLOW patch for now; it will be separate once upstream
NBD protocol