From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:36200) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5dhN-0001RT-Bl for qemu-devel@nongnu.org; Thu, 08 Mar 2012 08:48:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S5dgy-0002XF-BL for qemu-devel@nongnu.org; Thu, 08 Mar 2012 08:48:04 -0500 Received: from mx1.redhat.com ([209.132.183.28]:13338) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5dgy-0002Wu-3J for qemu-devel@nongnu.org; Thu, 08 Mar 2012 08:47:40 -0500 From: Marcelo Tosatti Date: Thu, 8 Mar 2012 09:49:42 -0300 Message-Id: Subject: [Qemu-devel] [PATCH 0/5] [PULL] qemu-kvm.git uq/master queue List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: Marcelo Tosatti , qemu-devel@nongnu.org, kvm@vger.kernel.org The following changes since commit e32605062cd62c2a958ad28a6ad7de4eeab12027: xilinx_zynq: machine model initial version (2012-03-07 02:20:19 +0100) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master Jan Kiszka (4): i8254: Factor out base class for KVM reuse i8254: Open-code timer restore kvm: Add kvm_has_pit_state2 helper kvm: x86: Add user space part for in-kernel i8254 Michael S. Tsirkin (1): kvm: fill in padding to help valgrind Makefile.objs | 2 +- Makefile.target | 2 +- hw/i8254.c | 281 +++++++--------------------------------------- hw/i8254.h | 11 ++ hw/i8254_common.c | 311 +++++++++++++++++++++++++++++++++++++++++++++++++++ hw/i8254_internal.h | 85 ++++++++++++++ hw/kvm/i8254.c | 254 +++++++++++++++++++++++++++++++++++++++++ hw/pc.c | 14 ++- kvm-all.c | 12 ++ kvm-stub.c | 5 + kvm.h | 1 + target-i386/kvm.c | 6 + 12 files changed, 742 insertions(+), 242 deletions(-) create mode 100644 hw/i8254_common.c create mode 100644 hw/i8254_internal.h create mode 100644 hw/kvm/i8254.c