From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43436) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFNqR-0004Ts-U7 for qemu-devel@nongnu.org; Thu, 07 Aug 2014 09:35:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XFNqM-0003TF-Fq for qemu-devel@nongnu.org; Thu, 07 Aug 2014 09:35:03 -0400 Received: from mail-we0-x236.google.com ([2a00:1450:400c:c03::236]:62243) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFNqM-0003Sp-1S for qemu-devel@nongnu.org; Thu, 07 Aug 2014 09:34:58 -0400 Received: by mail-we0-f182.google.com with SMTP id k48so4192605wev.13 for ; Thu, 07 Aug 2014 06:34:57 -0700 (PDT) Received: from playground.station (net-37-116-196-153.cust.vodafonedsl.it. [37.116.196.153]) by mx.google.com with ESMTPSA id ja13sm29000024wic.8.2014.08.07.06.34.55 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 07 Aug 2014 06:34:56 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 7 Aug 2014 15:34:48 +0200 Message-Id: <1407418489-19729-1-git-send-email-pbonzini@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL v2 00/11] KVM, icount changes for 2014-08-06 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org The following changes since commit 41a1a9c42c4e0fb5f1b94aa8b72e42f66ebde3d9: po: Update German translation (2014-07-28 23:37:17 +0200) are available in the git repository at: git://github.com/bonzini/qemu.git tags/for-upstream for you to fetch changes up to eddedd546a68f6ac864b71d50dd8d39b939b724b: target-mips: Ignore unassigned accesses with KVM (2014-08-07 15:09:48 +0200) ---------------------------------------------------------------- KVM changes include a MIPS patch and the testdev backend used by the ARM kvm-unit-tests. icount include the first part of reverse execution and Sebastian Tanase's patches to slow down -icount execution to the desired speed of the target. v1->v2: fix dump_drift_info to print nothing outside icount mode, and to compile on 32-bit architectures ---------------------------------------------------------------- James Hogan (1): target-mips: Ignore unassigned accesses with KVM KONRAD Frederic (3): icount: put icount variables into TimerState. migration: migrate icount fields. timer: add cpu_icount_to_ns function. Paolo Bonzini (1): backends: Introduce chr-testdev Sebastian Tanase (6): icount: Fix virtual clock start value on ARM icount: Add QemuOpts for icount icount: Add align option to icount cpu-exec: Add sleeping algorithm cpu-exec: Print to console if the guest is late monitor: Add drift info to 'info jit' backends/Makefile.objs | 2 +- backends/testdev.c | 131 ++++++++++++++++++++++++++++++++++++++++++++++++ cpu-exec.c | 116 ++++++++++++++++++++++++++++++++++++++++++ cpus.c | 118 ++++++++++++++++++++++++++++++++++++------- include/qemu-common.h | 8 ++- include/qemu/timer.h | 2 + include/sysemu/char.h | 3 ++ monitor.c | 1 + qapi-schema.json | 3 +- qemu-char.c | 4 ++ qemu-options.hx | 17 +++++-- qtest.c | 13 ++++- stubs/Makefile.objs | 1 + stubs/chr-testdev.c | 7 +++ target-mips/op_helper.c | 11 ++++ vl.c | 39 +++++++++++--- 16 files changed, 444 insertions(+), 32 deletions(-) create mode 100644 backends/testdev.c create mode 100644 stubs/chr-testdev.c -- 1.8.3.1