From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=46170 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P89d9-0001pt-Ia for qemu-devel@nongnu.org; Tue, 19 Oct 2010 06:41:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P89d8-000657-Jy for qemu-devel@nongnu.org; Tue, 19 Oct 2010 06:41:19 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52821) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P89d8-000651-Dd for qemu-devel@nongnu.org; Tue, 19 Oct 2010 06:41:18 -0400 From: Marcelo Tosatti Date: Tue, 19 Oct 2010 08:40:26 -0200 Message-Id: Subject: [Qemu-devel] [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue List-Id: qemu-devel.nongnu.org 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 38cc9b607f85017b095793cab6c129bc9844f441: issue snd_pcm_start() when capturing audio (2010-10-18 00:39:06 +0400) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master Huang Ying (1): Add RAM -> physical addr mapping in MCE simulation Joerg Roedel (2): Set cpuid definition to 0 before initializing it Add svm cpuid features Marcelo Tosatti (7): signalfd compatibility iothread: use signalfd Expose thread_id in info cpus kvm: x86: add mce support Export qemu_ram_addr_from_host MCE: Relay UCR MCE to guest Add savevm/loadvm support for MCE Makefile.objs | 1 + compatfd.c | 117 +++++++++++++++++++ compatfd.h | 43 +++++++ configure | 18 +++ cpu-common.h | 3 +- cpu-defs.h | 1 + cpus.c | 161 ++++++++++++++++++++++++-- exec-all.h | 2 +- exec.c | 27 +++-- kvm-all.c | 18 +++ kvm-stub.c | 5 + kvm.h | 6 + monitor.c | 4 + osdep.c | 15 +++ osdep.h | 1 + target-i386/cpu.h | 32 +++++- target-i386/cpuid.c | 79 ++++++++++--- target-i386/helper.c | 6 + target-i386/kvm.c | 300 ++++++++++++++++++++++++++++++++++++++++++++++++- target-i386/kvm_x86.h | 22 ++++ 20 files changed, 817 insertions(+), 44 deletions(-) create mode 100644 compatfd.c create mode 100644 compatfd.h create mode 100644 target-i386/kvm_x86.h