On 11/04/2011 11:31 AM, Kevin Wolf wrote:
> I tried implementing this, but in general daemonization (which forks and
> leave only the children) breaks the threading.
>
> So we could either keep this series (which moves all errors to syslog,
> but doesn't otherwise change behavior), or I can finish and post an
> alternative series that removes all forking from qemu-nbd*but* changes
> behavior in that "qemu-nbd -c" will not daemonize anymore.
>
> Since this is 1.0 after all, I'm slightly more inclined towards the latter.
>
> Opinions? Kevin, Anthony?
I'm surprised that -c is what causes trouble. As far as I understand,
the code for implementing -c doesn't use the qemu block layer at all.
-c causes qemu-nbd to fork (both to run the server in a child process,
and to daemonize). The server runs in a child process, but that means
that the server process loses the aio threads when the parent forks.
So why can't we just change the code to fork before it initialises the
block layer and opens the image file?
That's exactly what this series did. However, daemonization has also to
be done before opening the image file. So the series has to support
reporting errors to syslog, and also qemu-nbd will not give a nonzero
exit status when errors occur.
Exchanging the server and client roles is also possible (i.e. put the
server in the parent process and the client in the child). It fixes the
problem that the thread pool is lost in the server process. However it
still requires daemonization to occur before opening the image file so
that errors cannot be reported properly.
Paolo