From: Anthony Liguori <anthony@codemonkey.ws>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Jan Kiszka <jan.kiszka@siemens.com>,
qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: Re: [Qemu-devel] [PATCH 00/23] [PULL] qemu-kvm.git uq/master queue
Date: Fri, 04 Feb 2011 11:34:21 -0600 [thread overview]
Message-ID: <4D4C389D.4060607@codemonkey.ws> (raw)
In-Reply-To: <cover.1296834446.git.mtosatti@redhat.com>
On 02/04/2011 09:47 AM, Marcelo Tosatti wrote:
> The following changes since commit bfddb47a343b4718e5768aa80bce8adead0f7fca:
>
> Open up the 0.15 development branch (2011-02-02 08:39:28 +0100)
>
This series breaks reboot of a Linux guest both with TCG and KVM.
Perhaps it's a conflict with the ioapic changes from Jan? I can post a
tree but if you just rebase to the latest master there shouldn't be any
conflicts.
Regards,
Anthony Liguori
> are available in the git repository at:
> git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master
>
> Glauber Costa (1):
> kvm: make tsc stable over migration and machine start
>
> Jan Kiszka (22):
> Prevent abortion on multiple VCPU kicks
> Stop current VCPU on synchronous reset requests
> Process vmstop requests in IO thread
> Trigger exit from cpu_exec_all on pending IO events
> Leave inner main_loop faster on pending requests
> Flatten the main loop
> kvm: Report proper error on GET_VCPU_MMAP_SIZE failures
> kvm: Drop redundant kvm_enabled from kvm_cpu_thread_fn
> kvm: Handle kvm_init_vcpu errors
> kvm: Provide sigbus services arch-independently
> Refactor signal setup functions in cpus.c
> kvm: Set up signal mask also for !CONFIG_IOTHREAD
> kvm: Refactor qemu_kvm_eat_signals
> kvm: Call qemu_kvm_eat_signals also under !CONFIG_IOTHREAD
> Set up signalfd under !CONFIG_IOTHREAD
> kvm: Fix race between timer signals and vcpu entry under !IOTHREAD
> kvm: Add MCE signal support for !CONFIG_IOTHREAD
> Introduce VCPU self-signaling service
> kvm: Unconditionally reenter kernel after IO exits
> kvm: Remove static return code of kvm_handle_io
> kvm: Leave kvm_cpu_exec directly after KVM_EXIT_SHUTDOWN
> x86: Fix MCA broadcast parameters for TCG case
>
> Makefile.objs | 2 +-
> configure | 6 +
> cpu-defs.h | 1 +
> cpus.c | 549 +++++++++++++++++++++++++++++++-------------------
> cpus.h | 1 +
> kvm-all.c | 60 ++++---
> kvm-stub.c | 5 +
> kvm.h | 7 +-
> qemu-common.h | 1 +
> target-i386/cpu.h | 1 +
> target-i386/helper.c | 4 +-
> target-i386/kvm.c | 27 +++-
> target-ppc/kvm.c | 10 +
> target-s390x/kvm.c | 10 +
> vl.c | 40 ++--
> 15 files changed, 466 insertions(+), 258 deletions(-)
>
>
>
next prev parent reply other threads:[~2011-02-04 17:34 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-04 15:47 [Qemu-devel] [PATCH 00/23] [PULL] qemu-kvm.git uq/master queue Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 01/23] Prevent abortion on multiple VCPU kicks Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 02/23] Stop current VCPU on synchronous reset requests Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 03/23] Process vmstop requests in IO thread Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 04/23] Trigger exit from cpu_exec_all on pending IO events Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 05/23] Leave inner main_loop faster on pending requests Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 06/23] Flatten the main loop Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 07/23] kvm: Report proper error on GET_VCPU_MMAP_SIZE failures Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 08/23] kvm: Drop redundant kvm_enabled from kvm_cpu_thread_fn Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 09/23] kvm: Handle kvm_init_vcpu errors Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 10/23] kvm: Provide sigbus services arch-independently Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 11/23] Refactor signal setup functions in cpus.c Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 12/23] kvm: Set up signal mask also for !CONFIG_IOTHREAD Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 13/23] kvm: Refactor qemu_kvm_eat_signals Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 14/23] kvm: Call qemu_kvm_eat_signals also under !CONFIG_IOTHREAD Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 15/23] Set up signalfd " Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 16/23] kvm: Fix race between timer signals and vcpu entry under !IOTHREAD Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 17/23] kvm: Add MCE signal support for !CONFIG_IOTHREAD Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 18/23] Introduce VCPU self-signaling service Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 19/23] kvm: Unconditionally reenter kernel after IO exits Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 20/23] kvm: Remove static return code of kvm_handle_io Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 21/23] kvm: Leave kvm_cpu_exec directly after KVM_EXIT_SHUTDOWN Marcelo Tosatti
2011-02-04 15:47 ` [Qemu-devel] [PATCH 22/23] x86: Fix MCA broadcast parameters for TCG case Marcelo Tosatti
2011-02-08 11:39 ` Aurelien Jarno
2011-02-08 11:42 ` Jan Kiszka
2011-02-04 15:47 ` [Qemu-devel] [PATCH 23/23] kvm: make tsc stable over migration and machine start Marcelo Tosatti
2011-02-04 17:34 ` Anthony Liguori [this message]
2011-02-04 17:52 ` [Qemu-devel] [PATCH 00/23] [PULL] qemu-kvm.git uq/master queue Jan Kiszka
2011-02-04 18:21 ` [Qemu-devel] [PATCH v3 02/23] Stop current VCPU on synchronous reset requests Jan Kiszka
2011-02-04 21:22 ` [Qemu-devel] " Marcelo Tosatti
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=4D4C389D.4060607@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=jan.kiszka@siemens.com \
--cc=kvm@vger.kernel.org \
--cc=mtosatti@redhat.com \
--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).