search for: l234

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

Did you mean: 1234
2016 May 19
3
[Bug 2569] New: ssh-copy-id is not working when LogLevel=quiet
https://bugzilla.mindrot.org/show_bug.cgi?id=2569 Bug ID: 2569 Summary: ssh-copy-id is not working when LogLevel=quiet Product: Portable OpenSSH Version: 6.6p1 Hardware: Other OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: ssh-copy-id Assignee:
2019 Aug 26
2
Re: [PATCH disk-sync 5/5] Convert disk_sync inner loop to asynchronous.
On Thu, Aug 22, 2019 at 03:39:35PM +0100, Richard W.M. Jones wrote: >Previously the inner loop would issue nbd.pread() requests >synchronously, meaning that we would issue a request for each data >block from the nbdkit server (which would in turn synchronously >request the data from VMware) and wait until nbdkit replies before >continuing. > >This converts the inner loop so it
2019 Aug 27
0
Re: [PATCH disk-sync 5/5] Convert disk_sync inner loop to asynchronous.
...Yes we could do this. The eventual solution may be to replace the whole loop with a polling loop, but this would be a more invasive change. For comparison of this approach see: https://github.com/libguestfs/libnbd/blob/7ef893735937cd7ae62d0b41171ec14195ef2710/examples/threaded-reads-and-writes.c#L234-L307 > Also, I presume all of the locking is left to libnbd to be done (and > as you can see I don't concern myself with any locking in the whole > file), but if that was to be improved, is there some python part > that would require it? For example when cleaning up the code? The...