From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38878) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1adxlh-0003Kd-1b for qemu-devel@nongnu.org; Thu, 10 Mar 2016 05:24:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1adxld-0007Sj-T2 for qemu-devel@nongnu.org; Thu, 10 Mar 2016 05:24:32 -0500 Received: from mx1.redhat.com ([209.132.183.28]:53104) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1adxld-0007Sd-NS for qemu-devel@nongnu.org; Thu, 10 Mar 2016 05:24:29 -0500 References: <20160301110732.10104.2019.stgit@PASHA-ISP> <20160301110752.10104.65295.stgit@PASHA-ISP> <56E0110A.1000205@redhat.com> <000701d17aac$b1645040$142cf0c0$@ru> From: Paolo Bonzini Message-ID: <56E14B55.5060607@redhat.com> Date: Thu, 10 Mar 2016 11:24:21 +0100 MIME-Version: 1.0 In-Reply-To: <000701d17aac$b1645040$142cf0c0$@ru> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 3/5] replay: introduce new checkpoint for icount warp List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Pavel Dovgalyuk , 'Pavel Dovgalyuk' , qemu-devel@nongnu.org Cc: edgar.iglesias@xilinx.com, peter.maydell@linaro.org, igor.rubinov@gmail.com, mark.burton@greensocs.com, real@ispras.ru, batuzovk@ispras.ru, maria.klimushenkova@ispras.ru, stefanha@redhat.com, kwolf@redhat.com, hines@cert.org, alex.bennee@linaro.org, fred.konrad@greensocs.com On 10/03/2016 10:10, Pavel Dovgalyuk wrote: >> > The start would be where you call qemu_clock_warp(QEMU_CLOCK_VIRTUAL, false): >> > >> > if (!use_icount) { >> > return; >> > } >> > if (!runstate_is_running()) { >> > return; >> > } >> > if (!replay_checkpoint(CHECKPOINT_CLOCK_WARP_START)) { >> > return; >> > } >> > /* I think calling icount_warp_rt here is unnecessary. */ >> > if (!all_cpu_threads_idle()) { >> > return; >> > } >> > if (qtest_enabled()) { >> > /* When testing, qtest commands advance icount. */ >> > return; >> > } >> > >> > /* We want to use the earliest deadline from ALL vm_clocks */ >> > clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL_RT); >> > deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL); >> > ... >> > >> > The end or account function, instead, would be called from tcg_exec_all() >> > and also from icount_dummy_timer() (this is what makes the call to >> > icount_warp_rt unnecessary above): > Why icount_warp_rt is unnecessary? There is no code to proceed the virtual clock. > Then qemu_start_warp_timer will forever setup the timer without any progress. If icount_warp_rt is called from icount_dummy_timer(), the virtual clock will be updated as soon as the VIRTUAL_RT clock reaches the deadline. It's a much more reasonable place to call icount_warp_rt from (if it works...). Paolo