From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43225) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNLH1-0003Co-0Y for qemu-devel@nongnu.org; Mon, 16 Feb 2015 07:59:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YNLGx-0002lo-SA for qemu-devel@nongnu.org; Mon, 16 Feb 2015 07:59:38 -0500 Received: from mail-we0-x233.google.com ([2a00:1450:400c:c03::233]:48751) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YNLGx-0002la-MG for qemu-devel@nongnu.org; Mon, 16 Feb 2015 07:59:35 -0500 Received: by mail-we0-f179.google.com with SMTP id u56so29046051wes.10 for ; Mon, 16 Feb 2015 04:59:35 -0800 (PST) Sender: Paolo Bonzini Message-ID: <54E1E9B1.7090900@redhat.com> Date: Mon, 16 Feb 2015 13:59:29 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <20150122085127.5276.53895.stgit@PASHA-ISP.def.inno> <20150122085215.5276.8878.stgit@PASHA-ISP.def.inno> <54C9FE31.4090404@redhat.com> <001801d03ee3$c8cb7660$5a626320$@Dovgaluk@ispras.ru> <54CF6FA9.7090600@redhat.com> <28583.7738695138$1422880978@news.gmane.org> <54CF793D.6070404@redhat.com> <6071.25815372473$1424089600@news.gmane.org> In-Reply-To: <6071.25815372473$1424089600@news.gmane.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [RFC PATCH v8 08/21] cpu: replay instructions sequence List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Pavel Dovgaluk , qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, peter.crosthwaite@xilinx.com, mark.burton@greensocs.com, real@ispras.ru, batuzovk@ispras.ru, maria.klimushenkova@ispras.ru, alex.bennee@linaro.org, afaerber@suse.de, fred.konrad@greensocs.com On 16/02/2015 13:26, Pavel Dovgaluk wrote: >>> > > I think in this case there are no events at all - just reading timers values >>> > > that were made while recording. >>> > > We have to replay these reads by waking iothread. >> > >> > I think the right place for this is in replay_read_next_clock then. > It doesn't fit. Log file is not read until all instructions are executed. > And the next read from the file should be performed by iothread which should > be notified and waked up. I still don't understand. If you're getting EXCP_INTERRUPT it means: 1) that cpu_signal was called 2) in turn this means that qemu_cpu_kick was called 3) in turn this means that the iothread is trying to run via qemu_mutex_lock_iothread (the iothread_requesting_mutex stuff). So why do you need an explicit qemu_notify_event? Paolo