mbox

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

Message ID cover.1296834446.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 Feb. 4, 2011, 3:47 p.m. UTC
The following changes since commit bfddb47a343b4718e5768aa80bce8adead0f7fca:

  Open up the 0.15 development branch (2011-02-02 08:39:28 +0100)

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

Comments

Anthony Liguori Feb. 4, 2011, 5:34 p.m. UTC | #1
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(-)
>
>
>
Jan Kiszka Feb. 4, 2011, 5:52 p.m. UTC | #2
On 2011-02-04 18:34, Anthony Liguori wrote:
> 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.
> 

The problem is some patch in the queue itself. I obviously missed that
case. Will have a look.

Jan