search for: 13edbc4

Displaying 2 results from an estimated 2 matches for "13edbc4".

Did you mean: 135d2bc4
2019 May 21
0
[PATCH libnbd] api: Synchronous connect waits til all connections are connected.
...then use nbd_connect_command, but I did not make that change yet. --- generator/generator | 8 +++----- lib/connect.c | 48 +++++++++++++++++++++++++++++++++++---------- 2 files changed, 41 insertions(+), 15 deletions(-) diff --git a/generator/generator b/generator/generator index a1bf41d..13edbc4 100755 --- a/generator/generator +++ b/generator/generator @@ -1039,8 +1039,7 @@ C<\"qemu:dirty-bitmap:...\"> for qemu-nbd Connect (synchronously) over the named Unix domain socket (C<sockpath>) to an NBD server running on the same machine. This call returns when the conne...
2019 May 21
2
[PATCH libnbd] api: Synchronous connect waits til all connections are connected.
nbd_connect_unix|tcp had a tricky failure case. This is a consequence of allowing callers to mix synchronous and asynchronous calls, with multi-conn thrown into the mix. I think the new behaviour proposed here is better. We could do with a better way of classifying the state of connections, such as are they connectING. Rich.