From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45632) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V2LJA-0005lE-8G for qemu-devel@nongnu.org; Thu, 25 Jul 2013 09:10:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V2LJ5-00072n-Oy for qemu-devel@nongnu.org; Thu, 25 Jul 2013 09:10:16 -0400 Received: from mx1.redhat.com ([209.132.183.28]:32750) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V2LBy-0004Kq-37 for qemu-devel@nongnu.org; Thu, 25 Jul 2013 09:02:50 -0400 Message-ID: <51F121E1.4060805@redhat.com> Date: Thu, 25 Jul 2013 15:02:25 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1374396185-10870-1-git-send-email-pingfank@linux.vnet.ibm.com> <20130725120530.GJ21033@stefanha-thinkpad.redhat.com> <51F11AFB.9040008@siemens.com> <51F11B94.8090400@redhat.com> <51F11C63.40007@siemens.com> <51F11EA8.9050108@siemens.com> In-Reply-To: <51F11EA8.9050108@siemens.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [RFC 0/8] arm AioContext with its own timer stuff List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jan Kiszka Cc: Kevin Wolf , Alex Bligh , Stefan Hajnoczi , Liu Ping Fan , qemu-devel , Stefan Hajnoczi , Anthony Liguori Il 25/07/2013 14:48, Jan Kiszka ha scritto: > The concept of clocks (with start/stop property) and active timers shall > not be mixed, they are independent. Are you referring to this in particular: void pause_all_vcpus(void) { CPUState *cpu = first_cpu; qemu_clock_enable(vm_clock, false); ... } void resume_all_vcpus(void) { CPUState *cpu = first_cpu; qemu_clock_enable(vm_clock, true); ... } where _all_ the vm_clock timer lists need to be stopped at the same time? Paolo