qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Andreas Färber" <afaerber@suse.de>
To: qemu-devel@nongnu.org
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
	"Marcelo Tosatti" <mtosatti@redhat.com>,
	"Andreas Färber" <afaerber@suse.de>,
	"Anthony Liguori" <anthony@codemonkey.ws>,
	"Eduardo Habkost" <ehabkost@redhat.com>
Subject: [Qemu-devel] [PULL 00/19] QOM CPUState patch queue 2014-06-26
Date: Thu, 26 Jun 2014 00:12:00 +0200	[thread overview]
Message-ID: <1403734339-14405-1-git-send-email-afaerber@suse.de> (raw)

Hello Peter,

This is my long delayed QOM CPU patch queue. Please pull.

Regards,
Andreas

Cc: Peter Maydell <peter.maydell@linaro.org>
Cc: Anthony Liguori <anthony@codemonkey.ws>

Cc: Eduardo Habkost <ehabkost@redhat.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>

The following changes since commit 2b5b7ae917e8db48431631b1c5d909fa46c223a6:

  Merge remote-tracking branch 'remotes/mjt/tags/trivial-patches-2014-06-24' into staging (2014-06-24 17:14:57 +0100)

are available in the git repository at:


  git://github.com/afaerber/qemu-cpu.git tags/qom-cpu-for-2.1

for you to fetch changes up to ece01354073f8e02db0205ea7522f3dbf589c9aa:

  target-i386: Broadwell CPU model (2014-06-25 23:54:57 +0200)

----------------------------------------------------------------
X86CPU

* Filter out MONITOR for KVM
* Fix filtering for TCG
* -cpu foo,check and -cpu foo,enforce support for TCG
* -cpu host migration support (-cpu host,migratable=no to disable)
* Add invtsc feature support
* New model: Broadwell

----------------------------------------------------------------
Eduardo Habkost (16):
      target-i386: kvm: Don't enable MONITOR by default on any CPU model
      target-i386: Simplify reporting of unavailable features
      target-i386: Merge feature filtering/checking functions
      target-i386: Pass FeatureWord argument to report_unavailable_features()
      target-i386: Isolate KVM-specific code on CPU feature filtering logic
      target-i386: Make TCG feature filtering more readable
      target-i386: Filter FEAT_7_0_EBX TCG features too
      target-i386: Filter KVM and 0xC0000001 features on TCG
      target-i386: Define TCG_*_FEATURES earlier in cpu.c
      target-i386: Loop-based copying and setting/unsetting of feature words
      target-i386: Loop-based feature word filtering in TCG mode
      target-i386: Support check/enforce flags in TCG mode, too
      target-i386: Add "migratable" property to "host" CPU model
      target-i386: Set migratable=yes by default on "host" CPU mooel
      target-i386: Fix indentation of CPU model definitions
      target-i386: Broadwell CPU model

Marcelo Tosatti (3):
      savevm: check vmsd for migratability status
      target-i386: block migration and savevm if invariant tsc is exposed
      target-i386: Support "invariant tsc" flag

 savevm.c              |   5 +-
 target-i386/cpu-qom.h |   6 +-
 target-i386/cpu.c     | 566 +++++++++++++++++++++++++++++---------------------
 target-i386/cpu.h     |   4 +
 target-i386/kvm.c     |  15 ++
 target-i386/machine.c |   2 +-
 6 files changed, 357 insertions(+), 241 deletions(-)

             reply	other threads:[~2014-06-25 22:12 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-25 22:12 Andreas Färber [this message]
2014-06-25 22:12 ` [Qemu-devel] [PULL 01/19] target-i386: kvm: Don't enable MONITOR by default on any CPU model Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 02/19] target-i386: Simplify reporting of unavailable features Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 03/19] target-i386: Merge feature filtering/checking functions Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 04/19] target-i386: Pass FeatureWord argument to report_unavailable_features() Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 05/19] target-i386: Isolate KVM-specific code on CPU feature filtering logic Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 06/19] target-i386: Make TCG feature filtering more readable Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 07/19] target-i386: Filter FEAT_7_0_EBX TCG features too Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 08/19] target-i386: Filter KVM and 0xC0000001 features on TCG Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 09/19] target-i386: Define TCG_*_FEATURES earlier in cpu.c Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 10/19] target-i386: Loop-based copying and setting/unsetting of feature words Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 11/19] target-i386: Loop-based feature word filtering in TCG mode Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 12/19] target-i386: Support check/enforce flags in TCG mode, too Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 13/19] target-i386: Add "migratable" property to "host" CPU model Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 14/19] target-i386: Set migratable=yes by default on "host" CPU mooel Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 15/19] savevm: check vmsd for migratability status Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 16/19] target-i386: block migration and savevm if invariant tsc is exposed Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 17/19] target-i386: Support "invariant tsc" flag Andreas Färber
2014-08-08  7:07   ` chenliang (T)
2014-08-08 21:42     ` Marcelo Tosatti
2014-06-25 22:12 ` [Qemu-devel] [PULL 18/19] target-i386: Fix indentation of CPU model definitions Andreas Färber
2014-06-25 22:12 ` [Qemu-devel] [PULL 19/19] target-i386: Broadwell CPU model Andreas Färber
2014-06-26 12:57 ` [Qemu-devel] [PULL 00/19] QOM CPUState patch queue 2014-06-26 Peter Maydell

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=1403734339-14405-1-git-send-email-afaerber@suse.de \
    --to=afaerber@suse.de \
    --cc=anthony@codemonkey.ws \
    --cc=ehabkost@redhat.com \
    --cc=mtosatti@redhat.com \
    --cc=peter.maydell@linaro.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).