Il 19/07/2013 03:58, Stefan Hajnoczi ha scritto: >> Options: >> >> a) restore alarm timers (at least for the time being). Make all >> alarm timers do qemu_notify_event. However, only run the AioContext >> clock's timers within aio_poll. This is the least intrusive change. >> >> b) calculate the timeout in aio_poll with respect to the minimum >> deadline across all clocks, not just AioContext's clock. Use the >> same logic in mainloop. >> >> I'd go for (b), except for the millisecond accuracy thing. So my >> temptation (sadly) is (a). > > I think this is a non-issue because host_alarm_handler() can only be > called from the main loop: > > main-loop.c:qemu_signal_init() sets up signalfd to monitor SIGALRM. > Therefore we do not asynchronously invoke the SIGALRM signals handler. > It is only invoked from main-loop.c:sigfd_handler() when the main loop > runs. > > That's how I read the code. I haven't checked a running process to be > sure.
I think you're right. It was not strictly needed even with alarm timers, because host_alarm_handler() is called always before qemu_run_all_timers. But it made the code more robust. With your change to delete alarm timers and move the deadline to poll, the next poll call will have a timeout of 0 and all will be well. As to millisecond accuracy, as discussed earlier we can use ppoll on Linux. This of course should be introduced before alarm timers are deleted, to avoid breaking bisection. Paolo >> 2. If we do delete alarm timers, I'll need to delete the -clock option. > > I noticed this too because I think we should stub it out for > compatibility. Accept existing options but ignore them, update > documentation to state that they are kept for compatibility. > > Stefan >