Re: [Qemu-devel] [PATCH v3 1/3] qemu-nbd: Add --fork option

2016-09-27 Thread Max Reitz
On 27.09.2016 11:04, Kevin Wolf wrote: > Am 25.08.2016 um 18:30 hat Max Reitz geschrieben: >> Using the --fork option, one can make qemu-nbd fork the worker process. >> The original process will exit on error of the worker or once the worker >> enters the main loop. >> >> Suggested-by: Sascha Silbe

Re: [Qemu-devel] [PATCH v3 1/3] qemu-nbd: Add --fork option

2016-09-27 Thread Kevin Wolf
Am 25.08.2016 um 18:30 hat Max Reitz geschrieben: > Using the --fork option, one can make qemu-nbd fork the worker process. > The original process will exit on error of the worker or once the worker > enters the main loop. > > Suggested-by: Sascha Silbe > Signed-off-by: Max Reitz > --- > qemu-n

Re: [Qemu-devel] [PATCH v3 1/3] qemu-nbd: Add --fork option

2016-09-23 Thread Max Reitz
On 29.08.2016 18:59, Sascha Silbe wrote: > Dear Max, > > > thanks for taking the time to fix the race condition! > > > Max Reitz writes: > >> Using the --fork option, one can make qemu-nbd fork the worker process. >> The original process will exit on error of the worker or once the worker >>

Re: [Qemu-devel] [PATCH v3 1/3] qemu-nbd: Add --fork option

2016-08-29 Thread Sascha Silbe
Dear Max, thanks for taking the time to fix the race condition! Max Reitz writes: > Using the --fork option, one can make qemu-nbd fork the worker process. > The original process will exit on error of the worker or once the worker > enters the main loop. > @@ -773,7 +780,7 @@ int main(int ar

[Qemu-devel] [PATCH v3 1/3] qemu-nbd: Add --fork option

2016-08-25 Thread Max Reitz
Using the --fork option, one can make qemu-nbd fork the worker process. The original process will exit on error of the worker or once the worker enters the main loop. Suggested-by: Sascha Silbe Signed-off-by: Max Reitz --- qemu-nbd.c | 15 ++- 1 file changed, 14 insertions(+), 1 del