mbox

[00/28,PULL] qemu-kvm.git uq/master queue

Message ID cover.1351676405.git.mtosatti@redhat.com
State New
Headers show

Pull-request

git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master

Message

Marcelo Tosatti Oct. 31, 2012, 9:39 a.m. UTC
The following changes since commit aee0bf7d8d7564f8f2c40e4501695c492b7dd8d1:

  tap-win32: stubs to fix win32 build (2012-10-30 19:18:53 +0000)

are available in the git repository at:
  git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master

Don Slutz (1):
      target-i386: Add missing kvm cpuid feature name

Eduardo Habkost (19):
      i386: kvm: kvm_arch_get_supported_cpuid: move R_EDX hack outside of for loop
      i386: kvm: kvm_arch_get_supported_cpuid: clean up has_kvm_features check
      i386: kvm: kvm_arch_get_supported_cpuid: use 'entry' variable
      i386: kvm: extract register switch to cpuid_entry_get_reg() function
      i386: kvm: extract CPUID entry lookup to cpuid_find_entry() function
      i386: kvm: extract try_get_cpuid() loop to get_supported_cpuid() function
      i386: kvm: kvm_arch_get_supported_cpuid: replace if+switch with single 'if'
      i386: kvm: set CPUID_EXT_HYPERVISOR on kvm_arch_get_supported_cpuid()
      i386: kvm: set CPUID_EXT_TSC_DEADLINE_TIMER on kvm_arch_get_supported_cpuid()
      i386: kvm: x2apic is not supported without in-kernel irqchip
      i386: kvm: mask cpuid_kvm_features earlier
      i386: kvm: mask cpuid_ext4_features bits earlier
      i386: kvm: filter CPUID feature words earlier, on cpu.c
      i386: kvm: reformat filter_features_for_kvm() code
      i386: kvm: filter CPUID leaf 7 based on GET_SUPPORTED_CPUID, too
      i386: cpu: add missing CPUID[EAX=7,ECX=0] flag names
      target-i386: make cpu_x86_fill_host() void
      target-i386: cpu: make -cpu host/check/enforce code KVM-specific
      target-i386: kvm_cpu_fill_host: use GET_SUPPORTED_CPUID

Jan Kiszka (6):
      Use machine options to emulate -no-kvm-irqchip
      Issue warning when deprecated -no-kvm-pit is used
      Use global properties to emulate -no-kvm-pit-reinjection
      Issue warning when deprecated drive parameter boot=on|off is used
      Issue warning when deprecated -tdf option is used
      Emulate qemu-kvms -no-kvm option

Marcelo Tosatti (1):
      cirrus_vga: allow configurable vram size

Peter Maydell (1):
      update-linux-headers.sh: Handle new kernel uapi/ directories

 blockdev.c                      |    6 ++
 hw/cirrus_vga.c                 |   21 ++++--
 kvm.h                           |    1 +
 qemu-config.c                   |    4 +
 qemu-options.hx                 |   16 ++++
 scripts/update-linux-headers.sh |    3 +-
 target-i386/cpu.c               |   98 +++++++++++++++++++-------
 target-i386/kvm.c               |  153 +++++++++++++++++++++++----------------
 vl.c                            |   33 +++++++++
 9 files changed, 242 insertions(+), 93 deletions(-)

Comments

Anthony Liguori Nov. 1, 2012, 7:32 p.m. UTC | #1
Marcelo Tosatti <mtosatti@redhat.com> writes:

> The following changes since commit aee0bf7d8d7564f8f2c40e4501695c492b7dd8d1:
>
>   tap-win32: stubs to fix win32 build (2012-10-30 19:18:53 +0000)
>
> are available in the git repository at:
>   git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master
>
> Don Slutz (1):
>       target-i386: Add missing kvm cpuid feature name
>
> Eduardo Habkost (19):
>       i386: kvm: kvm_arch_get_supported_cpuid: move R_EDX hack outside of for loop
>       i386: kvm: kvm_arch_get_supported_cpuid: clean up has_kvm_features check
>       i386: kvm: kvm_arch_get_supported_cpuid: use 'entry' variable
>       i386: kvm: extract register switch to cpuid_entry_get_reg() function
>       i386: kvm: extract CPUID entry lookup to cpuid_find_entry() function
>       i386: kvm: extract try_get_cpuid() loop to get_supported_cpuid() function
>       i386: kvm: kvm_arch_get_supported_cpuid: replace if+switch with single 'if'
>       i386: kvm: set CPUID_EXT_HYPERVISOR on kvm_arch_get_supported_cpuid()
>       i386: kvm: set CPUID_EXT_TSC_DEADLINE_TIMER on kvm_arch_get_supported_cpuid()
>       i386: kvm: x2apic is not supported without in-kernel irqchip
>       i386: kvm: mask cpuid_kvm_features earlier
>       i386: kvm: mask cpuid_ext4_features bits earlier
>       i386: kvm: filter CPUID feature words earlier, on cpu.c
>       i386: kvm: reformat filter_features_for_kvm() code
>       i386: kvm: filter CPUID leaf 7 based on GET_SUPPORTED_CPUID, too
>       i386: cpu: add missing CPUID[EAX=7,ECX=0] flag names
>       target-i386: make cpu_x86_fill_host() void
>       target-i386: cpu: make -cpu host/check/enforce code KVM-specific
>       target-i386: kvm_cpu_fill_host: use GET_SUPPORTED_CPUID
>
> Jan Kiszka (6):
>       Use machine options to emulate -no-kvm-irqchip
>       Issue warning when deprecated -no-kvm-pit is used
>       Use global properties to emulate -no-kvm-pit-reinjection
>       Issue warning when deprecated drive parameter boot=on|off is used
>       Issue warning when deprecated -tdf option is used
>       Emulate qemu-kvms -no-kvm option
>
> Marcelo Tosatti (1):
>       cirrus_vga: allow configurable vram size
>
> Peter Maydell (1):
>       update-linux-headers.sh: Handle new kernel uapi/ directories
>

Pulled. Thanks.

Regards,

Anthony Liguori

>  blockdev.c                      |    6 ++
>  hw/cirrus_vga.c                 |   21 ++++--
>  kvm.h                           |    1 +
>  qemu-config.c                   |    4 +
>  qemu-options.hx                 |   16 ++++
>  scripts/update-linux-headers.sh |    3 +-
>  target-i386/cpu.c               |   98 +++++++++++++++++++-------
>  target-i386/kvm.c               |  153 +++++++++++++++++++++++----------------
>  vl.c                            |   33 +++++++++
>  9 files changed, 242 insertions(+), 93 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html