Displaying 3 results from an estimated 3 matches for "pool_max".
Did you mean:
loop_max
2020 Aug 06
5
[PATCH nbdkit NOT WORKING 0/2] vddk: Relax threading model.
I believe this roughly implements Nir's proposal here:
https://www.redhat.com/archives/libguestfs/2020-August/msg00028.html
Unfortunately it doesn't work for me. It actually slows things down
quite a lot, for reasons I don't understand. Note the adjustment of
the pool-max parameter and how it affects the total time. The results
are quite reproducible.
$ ./nbdkit -r -U - vddk
2020 Aug 06
0
[PATCH nbdkit 2/2] vddk: Relax thread model to PARALLEL and implement a disk handle pool.
...clude "vddk-structs.h"
@@ -85,6 +86,7 @@ char *libdir; /* libdir */
static uint16_t nfc_host_port; /* nfchostport */
char *password; /* password */
static uint16_t port; /* port */
+static unsigned pool_max = 8; /* pool-max */
static const char *server_name; /* server */
static bool single_link; /* single-link */
static const char *snapshot_moref; /* snapshot */
@@ -233,6 +235,12 @@ vddk_config (const char *key, const char *value)
if (nbdkit_pa...
2020 Aug 06
3
Re: [PATCH nbdkit 2/2] vddk: Relax thread model to PARALLEL and implement a disk handle pool.
...h"
> @@ -85,6 +86,7 @@ char *libdir; /* libdir */
> static uint16_t nfc_host_port; /* nfchostport */
> char *password; /* password */
> static uint16_t port; /* port */
> +static unsigned pool_max = 8; /* pool-max */
> static const char *server_name; /* server */
> static bool single_link; /* single-link */
> static const char *snapshot_moref; /* snapshot */
> @@ -233,6 +235,12 @@ vddk_config (const char *key, const char *value...