From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:53155) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QnpdR-0002mP-CG for qemu-devel@nongnu.org; Mon, 01 Aug 2011 06:22:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QnpdQ-0003gM-IG for qemu-devel@nongnu.org; Mon, 01 Aug 2011 06:22:09 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44619) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QnpdQ-0003gE-An for qemu-devel@nongnu.org; Mon, 01 Aug 2011 06:22:08 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p71AM6gR000620 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 1 Aug 2011 06:22:06 -0400 From: Alon Levy Date: Mon, 1 Aug 2011 13:21:41 +0300 Message-Id: <1312194101-9433-1-git-send-email-alevy@redhat.com> Subject: [Qemu-devel] [PATCH] Revert "qxl: set mm_time in vga update" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kraxel@redhat.com This reverts commit 22795174a37e02200944c0d093d518e832650686. Without this patch the windows logo animation during boot time was correct, with it it jumps backwards and forwards erratically. --- ui/spice-display.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/ui/spice-display.c b/ui/spice-display.c index 683d454..91b1cfc 100644 --- a/ui/spice-display.c +++ b/ui/spice-display.c @@ -134,7 +134,6 @@ static SimpleSpiceUpdate *qemu_spice_create_update(SimpleSpiceDisplay *ssd) QXLCommand *cmd; uint8_t *src, *dst; int by, bw, bh; - struct timespec time_space; if (qemu_spice_rect_is_empty(&ssd->dirty)) { return NULL; @@ -161,10 +160,6 @@ static SimpleSpiceUpdate *qemu_spice_create_update(SimpleSpiceDisplay *ssd) drawable->surfaces_dest[0] = -1; drawable->surfaces_dest[1] = -1; drawable->surfaces_dest[2] = -1; - clock_gettime(CLOCK_MONOTONIC, &time_space); - /* time in milliseconds from epoch. */ - drawable->mm_time = time_space.tv_sec * 1000 - + time_space.tv_nsec / 1000 / 1000; drawable->u.copy.rop_descriptor = SPICE_ROPD_OP_PUT; drawable->u.copy.src_bitmap = (intptr_t)image; -- 1.7.6