From patchwork Tue Jan 31 16:12:54 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefano Stabellini X-Patchwork-Id: 138802 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 77356B71A5 for ; Wed, 1 Feb 2012 03:12:05 +1100 (EST) Received: from localhost ([::1]:56027 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsGJP-0006KQ-Ai for incoming@patchwork.ozlabs.org; Tue, 31 Jan 2012 11:12:03 -0500 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 X-IronPort-AV: E=Sophos;i="4.71,596,1320642000"; d="scan'208";a="21462336" Received: from ftlpmailmx01.citrite.net ([10.13.107.65]) by FTLPIPO01.CITRIX.COM with ESMTP/TLS/RC4-MD5; 31 Jan 2012 11:11:21 -0500 Received: from smtp01.ad.xensource.com (10.219.128.104) by smtprelay.citrix.com (10.13.107.65) with Microsoft SMTP Server id 8.3.213.0; Tue, 31 Jan 2012 11:11:20 -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 q0VGAvVt032535; Tue, 31 Jan 2012 08:11:09 -0800 From: Stefano Stabellini To: xen-devel@lists.xensource.com Date: Tue, 31 Jan 2012 16:12:54 +0000 Message-ID: <1328026374-12803-6-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.89 Cc: Stefano Stabellini , jan.kiszka@siemens.com, qemu-devel@nongnu.org, avi@redhat.com, pbonzini@redhat.com Subject: [Qemu-devel] [PATCH v4 6/6] 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 --- 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; }