From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:50087) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RnZs4-0003r3-Qc for qemu-devel@nongnu.org; Wed, 18 Jan 2012 13:04:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RnZs0-0004jt-RL for qemu-devel@nongnu.org; Wed, 18 Jan 2012 13:04:28 -0500 Received: from mail-ee0-f45.google.com ([74.125.83.45]:60515) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RnZs0-0004jn-Lf for qemu-devel@nongnu.org; Wed, 18 Jan 2012 13:04:24 -0500 Received: by eekc41 with SMTP id c41so2860851eek.4 for ; Wed, 18 Jan 2012 10:04:23 -0800 (PST) Sender: Paolo Bonzini Message-ID: <4F1709A5.5080201@redhat.com> Date: Wed, 18 Jan 2012 19:04:21 +0100 From: Paolo Bonzini MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] direct usage of rt_clock instead of rtc_clock List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , qemu-devel , Andrzej Zaborowski Hi Peter and Andrzej, the following four files in hw/ are using rt_clock directly omap1.c pxa2xx.c strongarm.c twl92230.c instead of rtc_clock. This means that they're not completely deterministic when using -icount or in the future qtest. A simple search-and-replace would be okay I think. However they could also use a notifier to update the timers whenever the rtc_clock jumped backwards (see commit 17604da). If you are going to add the notifier I'll happily leave the work to you; otherwise I'll post the search-and-replace patch. Paolo