From patchwork Fri Jan 27 12:26:55 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefano Stabellini X-Patchwork-Id: 138217 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id EA703B6F67 for ; Fri, 27 Jan 2012 23:26:42 +1100 (EST) Received: from localhost ([::1]:58818 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rqksw-0003YS-UV for incoming@patchwork.ozlabs.org; Fri, 27 Jan 2012 07:26:30 -0500 Received: from eggs.gnu.org ([140.186.70.92]:38514) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rqksg-00032o-DG for qemu-devel@nongnu.org; Fri, 27 Jan 2012 07:26:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rqksa-0003hy-Ex for qemu-devel@nongnu.org; Fri, 27 Jan 2012 07:26:14 -0500 Received: from smtp02.citrix.com ([66.165.176.63]:13964) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rqksa-0003ha-BZ for qemu-devel@nongnu.org; Fri, 27 Jan 2012 07:26:08 -0500 X-IronPort-AV: E=Sophos;i="4.71,579,1320642000"; d="scan'208";a="179352800" Received: from ftlpmailmx02.citrite.net ([10.13.107.66]) by FTLPIPO02.CITRIX.COM with ESMTP/TLS/RC4-MD5; 27 Jan 2012 07:25:57 -0500 Received: from smtp01.ad.xensource.com (10.219.128.104) by smtprelay.citrix.com (10.13.107.66) with Microsoft SMTP Server id 8.3.213.0; Fri, 27 Jan 2012 07:25:57 -0500 Received: from localhost.localdomain (kaball.uk.xensource.com [10.80.2.59]) by smtp01.ad.xensource.com (8.13.1/8.13.1) with ESMTP id q0RCPhWd012742; Fri, 27 Jan 2012 04:25:50 -0800 From: Stefano Stabellini To: qemu-devel@nongnu.org Date: Fri, 27 Jan 2012 12:26:55 +0000 Message-ID: <1327667215-5411-5-git-send-email-stefano.stabellini@eu.citrix.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: References: MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 66.165.176.63 Cc: xen-devel@lists.xensource.com, avi@redhat.com, Stefano Stabellini Subject: [Qemu-devel] [PATCH v2 5/5] qemu_calculate_timeout: increase minimum timeout to 1h X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 Reviewed-by: Paolo Bonzini --- qemu-timer.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/qemu-timer.c b/qemu-timer.c index 648db1d..b792a32 100644 --- a/qemu-timer.c +++ b/qemu-timer.c @@ -844,6 +844,6 @@ fail: int qemu_calculate_timeout(void) { - return 1000; + return 1000*60*60; }