The req_cmd_notification callback is called by spice-server when it has processed all commands and wants to be notified (by a wakeup) that new commands have been appended to the command queue. Replay utility tries to fill the commands when it detects that spice-server is trying to read commands but there are no more commands. However, new commands are appended of new commands happen in a separate thread so if the main red worker loop on spice-server is really tight this request can happen. Avoid printing any message on this condition, message will be appended and loop woken up when replay code can do it. Signed-by: Frediano Ziglio <figlio@xxxxxxxxxx> --- server/tests/replay.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/server/tests/replay.c b/server/tests/replay.c index c7f3f00..f3b670f 100644 --- a/server/tests/replay.c +++ b/server/tests/replay.c @@ -183,12 +183,6 @@ static int get_command(QXLInstance *qin, QXLCommandExt *ext) static int req_cmd_notification(QXLInstance *qin) { - if (!started) - return TRUE; - - g_printerr("id: %d, queue length: %d", - g_source_get_id(fill_source), g_async_queue_length(aqueue)); - return TRUE; } -- 2.4.3 _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/spice-devel