search for: d04a7d6

Displaying 3 results from an estimated 3 matches for "d04a7d6".

2018 Sep 17
0
[PATCH nbdkit v3 2/3] common: Introduce round up, down; and divide round up functions.
...ound_up - 1) & ~(round_up - 1); + size = ROUND_UP (size, round_up); if (round_down > 0) - size &= ~(round_down - 1); + size = ROUND_DOWN (size, round_down); ret = size; pthread_mutex_unlock (&lock); diff --git a/tests/Makefile.am b/tests/Makefile.am index 23316ea..d04a7d6 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -89,6 +89,7 @@ EXTRA_DIST = \ test-tls-psk.sh \ test-truncate1.sh \ test-truncate2.sh \ + test-truncate3.sh \ test-vddk.sh \ test-version.sh \ test-version-filter.sh \ @@ -703,6 +704,7 @@ test_partition_LDADD = libtest.la $(LIBGU...
2018 Sep 17
7
[PATCH nbdkit v3 0/3] Add partitioning plugin.
The partitioning plugin patch is the same (except for rebasing). However I have changed the first two patches based on feedback received. In particular this fixes a very serious bug found by Eric Blake in the current truncate filter. Rich.
2018 Sep 17
0
[PATCH nbdkit v3 3/3] Add partitioning plugin.
...ve a single file you should use @@ -73,7 +76,8 @@ modification). L<nbdkit(1)>, L<nbdkit-plugin(3)>, -L<nbdkit-file-plugin(1)>. +L<nbdkit-file-plugin(1)>, +L<nbdkit-partitioning-plugin(1)>. =head1 AUTHORS diff --git a/tests/Makefile.am b/tests/Makefile.am index d04a7d6..b5b7d4c 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -70,6 +70,8 @@ EXTRA_DIST = \ test-offset2.sh \ test-parallel-file.sh \ test-parallel-nbd.sh \ + test-partitioning1.sh \ + test-partitioning2.sh \ test-pattern.sh \ test-pattern-largest.sh \ test-pattern-largest-for-qemu...