From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo Tosatti Subject: [PATCH 00/10] [PULL] qemu-kvm.git uq/master queue Date: Wed, 20 Oct 2010 15:43:37 -0200 Message-ID: Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org, Marcelo Tosatti To: Anthony Liguori Return-path: Received: from mx1.redhat.com ([209.132.183.28]:38270 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753597Ab0JTRpH (ORCPT ); Wed, 20 Oct 2010 13:45:07 -0400 Sender: kvm-owner@vger.kernel.org List-ID: 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 kvm: x86: add mce support Export qemu_ram_addr_from_host MCE: Relay UCR MCE to guest Add savevm/loadvm support for MCE Fix memory leak in register save load due to xsave support Makefile.objs | 1 + compatfd.c | 117 ++++++++++++++++++ compatfd.h | 43 +++++++ configure | 18 +++ cpu-common.h | 3 +- cpus.c | 156 ++++++++++++++++++++++-- exec-all.h | 2 +- exec.c | 26 +++-- kvm-all.c | 18 +++ kvm-stub.c | 5 + kvm.h | 9 ++ target-i386/cpu.h | 32 +++++- target-i386/cpuid.c | 79 ++++++++++--- target-i386/helper.c | 6 + target-i386/kvm.c | 311 ++++++++++++++++++++++++++++++++++++++++++++++++- target-i386/kvm_x86.h | 22 ++++ 16 files changed, 801 insertions(+), 47 deletions(-) create mode 100644 compatfd.c create mode 100644 compatfd.h create mode 100644 target-i386/kvm_x86.h