When pack-objects dies prematurely (for example, because there is some repo corruption), we are careful to clean up the sideband demuxer (if it is being used) with finish_async. For an async implementation which forks (i.e., not Windows), that means we will waitpid() for the async process. Meanwhile, the async sideband demuxer will continue trying to stream data from the remote repo until it gets EOF. Depending on what data pack-objects actually sent, the remote repo may not actually send anything, in particular, after the initial rev-exchange it is waiting for the pack data to arrive. The send-pack parent process closes the writable end of the channel so that after the death of the pack-objects process all writable ends should have been closed and the remote repo should see EOF. This does not happen, however, because when the sideband demuxer was forked earlier, it also inherited a writable end; it remains open and keeps the remote repo from seeing EOF. This leads to a deadlock cycle in which send-pack waits on the demuxer, the demuxer waits on the remote receive-pack, and the remote receive-pack waits on send-pack to send the pack data. To break this, we close the writable end in the demuxer, but only when it runs in a forked async process. Analyzed-by: Jeff King <peff@xxxxxxxx> Signed-off-by: Johannes Sixt <j6t@xxxxxxxx> --- This is the replacement of the series that Jeff proposed earlier. It should also be merged into f6b60983 (Enable threaded async procedures whenever pthreads is available). To keep bisectability, the merge commit should replace '#ifndef ASYNC_AS_THREAD' by '#ifdef NO_PTHREADS'. -- Hannes builtin-send-pack.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/builtin-send-pack.c b/builtin-send-pack.c index 089058b..b371c79 100644 --- a/builtin-send-pack.c +++ b/builtin-send-pack.c @@ -376,6 +376,9 @@ static void print_helper_status(struct ref *ref) static int sideband_demux(int in, int out, void *data) { int *fd = data; +#ifndef ASYNC_AS_THREAD + close(fd[1]); +#endif int ret = recv_sideband("send-pack", fd[0], out); close(out); return ret; -- 1.7.5.rc1.97.ge0653 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html