All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marcelo Tosatti <mtosatti@redhat.com>
To: Anthony Liguori <aliguori@us.ibm.com>
Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org,
	Marcelo Tosatti <mtosatti@redhat.com>
Subject: [PATCH 00/28] [PULL] qemu-kvm.git uq/master queue
Date: Wed, 31 Oct 2012 07:39:38 -0200	[thread overview]
Message-ID: <cover.1351676405.git.mtosatti@redhat.com> (raw)

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(-)

WARNING: multiple messages have this Message-ID (diff)
From: Marcelo Tosatti <mtosatti@redhat.com>
To: Anthony Liguori <aliguori@us.ibm.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>,
	qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: [Qemu-devel] [PATCH 00/28] [PULL] qemu-kvm.git uq/master queue
Date: Wed, 31 Oct 2012 07:39:38 -0200	[thread overview]
Message-ID: <cover.1351676405.git.mtosatti@redhat.com> (raw)

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(-)

             reply	other threads:[~2012-10-31  9:40 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-31  9:39 Marcelo Tosatti [this message]
2012-10-31  9:39 ` [Qemu-devel] [PATCH 00/28] [PULL] qemu-kvm.git uq/master queue Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 01/28] i386: kvm: kvm_arch_get_supported_cpuid: move R_EDX hack outside of for loop Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 02/28] i386: kvm: kvm_arch_get_supported_cpuid: clean up has_kvm_features check Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 03/28] i386: kvm: kvm_arch_get_supported_cpuid: use 'entry' variable Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 04/28] i386: kvm: extract register switch to cpuid_entry_get_reg() function Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 05/28] i386: kvm: extract CPUID entry lookup to cpuid_find_entry() function Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 06/28] i386: kvm: extract try_get_cpuid() loop to get_supported_cpuid() function Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 07/28] i386: kvm: kvm_arch_get_supported_cpuid: replace if+switch with single 'if' Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 08/28] i386: kvm: set CPUID_EXT_HYPERVISOR on kvm_arch_get_supported_cpuid() Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 09/28] i386: kvm: set CPUID_EXT_TSC_DEADLINE_TIMER " Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 10/28] i386: kvm: x2apic is not supported without in-kernel irqchip Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 11/28] i386: kvm: mask cpuid_kvm_features earlier Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 12/28] i386: kvm: mask cpuid_ext4_features bits earlier Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 13/28] i386: kvm: filter CPUID feature words earlier, on cpu.c Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 14/28] i386: kvm: reformat filter_features_for_kvm() code Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 15/28] i386: kvm: filter CPUID leaf 7 based on GET_SUPPORTED_CPUID, too Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 16/28] i386: cpu: add missing CPUID[EAX=7,ECX=0] flag names Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] [PATCH 16/28] i386: cpu: add missing CPUID[EAX=7, ECX=0] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 17/28] target-i386: Add missing kvm cpuid feature name Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 18/28] cirrus_vga: allow configurable vram size Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 19/28] Use machine options to emulate -no-kvm-irqchip Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 20/28] Issue warning when deprecated -no-kvm-pit is used Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:39 ` [PATCH 21/28] Use global properties to emulate -no-kvm-pit-reinjection Marcelo Tosatti
2012-10-31  9:39   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:40 ` [PATCH 22/28] Issue warning when deprecated drive parameter boot=on|off is used Marcelo Tosatti
2012-10-31  9:40   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:40 ` [PATCH 23/28] Issue warning when deprecated -tdf option " Marcelo Tosatti
2012-10-31  9:40   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:40 ` [PATCH 24/28] Emulate qemu-kvms -no-kvm option Marcelo Tosatti
2012-10-31  9:40   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:40 ` [PATCH 25/28] target-i386: make cpu_x86_fill_host() void Marcelo Tosatti
2012-10-31  9:40   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:40 ` [PATCH 26/28] target-i386: cpu: make -cpu host/check/enforce code KVM-specific Marcelo Tosatti
2012-10-31  9:40   ` [Qemu-devel] " Marcelo Tosatti
2012-10-31  9:40 ` [PATCH 27/28] target-i386: kvm_cpu_fill_host: use GET_SUPPORTED_CPUID Marcelo Tosatti
2012-10-31  9:40   ` [Qemu-devel] " Marcelo Tosatti
2012-11-02 15:34   ` Andreas Färber
2012-11-02 15:52     ` Andreas Färber
2012-11-02 16:05     ` Eduardo Habkost
2012-11-02 16:05       ` [Qemu-devel] " Eduardo Habkost
2012-11-02 16:25       ` [PATCH] target-i386: cpu: fix --disable-kvm compilation Eduardo Habkost
2012-11-02 16:25         ` [Qemu-devel] " Eduardo Habkost
2012-11-02 16:54         ` Andreas Färber
2012-11-02 16:54           ` [Qemu-devel] " Andreas Färber
2012-10-31  9:40 ` [PATCH 28/28] update-linux-headers.sh: Handle new kernel uapi/ directories Marcelo Tosatti
2012-10-31  9:40   ` [Qemu-devel] " Marcelo Tosatti
2012-11-01 19:32 ` [PATCH 00/28] [PULL] qemu-kvm.git uq/master queue Anthony Liguori
2012-11-01 19:32   ` [Qemu-devel] " Anthony Liguori

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1351676405.git.mtosatti@redhat.com \
    --to=mtosatti@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=kvm@vger.kernel.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.