From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53730) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrYaT-0002OS-EW for qemu-devel@nongnu.org; Wed, 18 Jul 2012 14:03:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SrYaR-0002tS-QJ for qemu-devel@nongnu.org; Wed, 18 Jul 2012 14:03:01 -0400 Received: from e24smtp04.br.ibm.com ([32.104.18.25]:50054) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SrYaR-0002cB-Ft for qemu-devel@nongnu.org; Wed, 18 Jul 2012 14:02:59 -0400 Received: from /spool/local by e24smtp04.br.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 18 Jul 2012 15:02:42 -0300 Received: from d24relay02.br.ibm.com (d24relay02.br.ibm.com [9.13.184.26]) by d24dlp02.br.ibm.com (Postfix) with ESMTP id 79DFA1DC004F for ; Wed, 18 Jul 2012 14:02:41 -0400 (EDT) Received: from d24av02.br.ibm.com (d24av02.br.ibm.com [9.8.31.93]) by d24relay02.br.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q6II1tRK38993928 for ; Wed, 18 Jul 2012 15:01:55 -0300 Received: from d24av02.br.ibm.com (loopback [127.0.0.1]) by d24av02.br.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q6II2eFh016607 for ; Wed, 18 Jul 2012 15:02:41 -0300 From: =?UTF-8?q?Cr=C3=ADstian=20Viana?= Date: Wed, 18 Jul 2012 15:02:36 -0300 Message-Id: <1342634557-31296-2-git-send-email-vianac@linux.vnet.ibm.com> In-Reply-To: <1342634557-31296-1-git-send-email-vianac@linux.vnet.ibm.com> References: <1342634557-31296-1-git-send-email-vianac@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v6 2/3] Force driftfix=none on previous machines List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: QEMU Development ML Cc: =?UTF-8?q?Cr=C3=ADstian=20Viana?= , Anthony Liguori The current value for the -rtc driftfix option is 'none'. This patch makes sure that the old machines configuration will work the same way even after that option changes its default value. Signed-off-by: Crístian Viana --- hw/pc_piix.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hw/pc_piix.c b/hw/pc_piix.c index 0c0096f..cac7b36 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -410,6 +410,10 @@ static QEMUMachine pc_machine_v1_1 = { .driver = TYPE_USB_DEVICE,\ .property = "full-path",\ .value = "no",\ + },{\ + .driver = "mc146818rtc",\ + .property = "lost_tick_policy",\ + .value = "discard",\ } static QEMUMachine pc_machine_v1_0 = { -- 1.7.9.5