From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:39573) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsGIp-0004X9-Kg for qemu-devel@nongnu.org; Tue, 31 Jan 2012 11:11:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RsGIj-0002IT-Mv for qemu-devel@nongnu.org; Tue, 31 Jan 2012 11:11:27 -0500 Received: from smtp.citrix.com ([66.165.176.89]:30726) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsGIj-0002I7-Ga for qemu-devel@nongnu.org; Tue, 31 Jan 2012 11:11:21 -0500 From: Stefano Stabellini Date: Tue, 31 Jan 2012 16:12:54 +0000 Message-ID: <1328026374-12803-6-git-send-email-stefano.stabellini@eu.citrix.com> In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH v4 6/6] qemu_calculate_timeout: increase minimum timeout to 1h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: xen-devel@lists.xensource.com Cc: Stefano Stabellini , jan.kiszka@siemens.com, qemu-devel@nongnu.org, avi@redhat.com, pbonzini@redhat.com There is no reason why the minimum timeout should be 1sec, it could easily be 1h and we would save lots of cpu cycles. Signed-off-by: Stefano Stabellini --- qemu-timer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/qemu-timer.c b/qemu-timer.c index de20852..84b970e 100644 --- a/qemu-timer.c +++ b/qemu-timer.c @@ -823,6 +823,6 @@ fail: int qemu_calculate_timeout(void) { - return 1000; + return 1000*60*60; } -- 1.7.2.5