From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41187) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRHgX-0003Z4-EW for qemu-devel@nongnu.org; Tue, 09 Sep 2014 05:26:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XRHgO-0003lC-DK for qemu-devel@nongnu.org; Tue, 09 Sep 2014 05:26:01 -0400 Received: from mail-wg0-x22a.google.com ([2a00:1450:400c:c00::22a]:38613) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XRHgO-0003l4-6j for qemu-devel@nongnu.org; Tue, 09 Sep 2014 05:25:52 -0400 Received: by mail-wg0-f42.google.com with SMTP id x12so4363527wgg.25 for ; Tue, 09 Sep 2014 02:25:51 -0700 (PDT) From: =?UTF-8?q?Marc=20Mar=C3=AD?= Date: Tue, 9 Sep 2014 11:25:38 +0200 Message-Id: <1410254738-10565-1-git-send-email-marc.mari.barcelo@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [TRIVIAL][PATCH] libqos virtio: Increase ISR timeout List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Marc=20Mar=C3=AD?= , Peter Maydell , Stefan Hajnoczi Signed-off-by: Marc MarĂ­ --- tests/libqos/virtio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/libqos/virtio.c b/tests/libqos/virtio.c index 128dbd0..9b6de2c 100644 --- a/tests/libqos/virtio.c +++ b/tests/libqos/virtio.c @@ -82,7 +82,7 @@ bool qvirtio_wait_queue_isr(const QVirtioBus *bus, QVirtioDevice *d, QVirtQueue *vq, uint64_t timeout) { do { - clock_step(10); + clock_step(100); if (bus->get_queue_isr_status(d, vq)) { break; /* It has ended */ } @@ -95,7 +95,7 @@ bool qvirtio_wait_config_isr(const QVirtioBus *bus, QVirtioDevice *d, uint64_t timeout) { do { - clock_step(10); + clock_step(100); if (bus->get_config_isr_status(d)) { break; /* It has ended */ } -- 1.7.10.4