All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] KVM changes for 4.6-rc4
@ 2016-04-12 16:50 Radim Krčmář
  2016-04-12 18:34 ` Paolo Bonzini
  0 siblings, 1 reply; 2+ messages in thread
From: Radim Krčmář @ 2016-04-12 16:50 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Paolo Bonzini, kvm

Linus,

The following changes since commit 541d8f4d59d79f5d37c8c726f723d42ff307db57:

  Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm (2016-04-05 16:16:00 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/virt/kvm/kvm.git tags/for-linus

for you to fetch changes up to 316314cae15fb0e3869b76b468f59a0c83ac3d4e:

  KVM: x86: mask CPUID(0xD,0x1).EAX against host value (2016-04-10 21:53:50 +0200)

----------------------------------------------------------------
KVM/ARM fixes:
- Wrong indentation in the PMU code from the merge window
- A long-time bug occuring with running ntpd on the host, candidate for stable
- Properly handle (and warn about) the unsupported configuration of running on
   systems with less than 40 bits of PA space
- More fixes to the PM and hotplug notifier stuff from the merge window

x86:
- leak of guest xcr0 (typically shows up as SIGILL)
- new maintainer (who is sending the pull request too)
- fix for merge window regression
- fix for guest CPUID

----------------------------------------------------------------
David Matlack (1):
      kvm: x86: do not leak guest xcr0 into host interrupt handlers

Marc Zyngier (2):
      KVM: arm/arm64: Handle forward time correction gracefully
      arm64: KVM: Warn when PARange is less than 40 bits

Paolo Bonzini (2):
      KVM: new maintainer on the block
      KVM: x86: mask CPUID(0xD,0x1).EAX against host value

Radim Krčmář (1):
      Merge tag 'kvm-arm-for-4.6-rc4' of git://git.kernel.org/.../kvmarm/kvmarm

Sudeep Holla (1):
      arm64: KVM: unregister notifiers in hyp mode teardown path

Will Deacon (1):
      arm64: KVM: Add braces to multi-line if statement in virtual PMU code

Xiao Guangrong (1):
      KVM: MMU: fix permission_fault()

 MAINTAINERS                       |  2 +-
 arch/arm/kvm/arm.c                | 13 ++++++++---
 arch/arm64/include/asm/kvm_arm.h  |  6 ++---
 arch/arm64/include/asm/kvm_asm.h  |  2 +-
 arch/arm64/include/asm/kvm_host.h |  7 +++---
 arch/arm64/kvm/hyp/s2-setup.c     | 39 +++++++++++++++++++++++++++++--
 arch/x86/kvm/cpuid.c              |  1 +
 arch/x86/kvm/mmu.h                |  9 ++++---
 arch/x86/kvm/paging_tmpl.h        |  2 +-
 arch/x86/kvm/x86.c                | 10 ++++----
 virt/kvm/arm/arch_timer.c         | 49 +++++++++++++++++++++++++++++++--------
 virt/kvm/arm/pmu.c                |  3 ++-
 12 files changed, 106 insertions(+), 37 deletions(-)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] KVM changes for 4.6-rc4
  2016-04-12 16:50 [GIT PULL] KVM changes for 4.6-rc4 Radim Krčmář
@ 2016-04-12 18:34 ` Paolo Bonzini
  0 siblings, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2016-04-12 18:34 UTC (permalink / raw)
  To: Radim Krčmář, Linus Torvalds; +Cc: kvm



On 12/04/2016 18:50, Radim Krčmář wrote:
> Linus,
> 
> The following changes since commit 541d8f4d59d79f5d37c8c726f723d42ff307db57:
> 
>   Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm (2016-04-05 16:16:00 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/virt/kvm/kvm.git tags/for-linus
> 
> for you to fetch changes up to 316314cae15fb0e3869b76b468f59a0c83ac3d4e:
> 
>   KVM: x86: mask CPUID(0xD,0x1).EAX against host value (2016-04-10 21:53:50 +0200)

For the record, this tag is signed by me because I prepared the pull
request.  Further pull requests for 4.6 will be signed and sent out by
Radim directly.

Thanks,

Paolo

> ----------------------------------------------------------------
> KVM/ARM fixes:
> - Wrong indentation in the PMU code from the merge window
> - A long-time bug occuring with running ntpd on the host, candidate for stable
> - Properly handle (and warn about) the unsupported configuration of running on
>    systems with less than 40 bits of PA space
> - More fixes to the PM and hotplug notifier stuff from the merge window
> 
> x86:
> - leak of guest xcr0 (typically shows up as SIGILL)
> - new maintainer (who is sending the pull request too)
> - fix for merge window regression
> - fix for guest CPUID
> 
> ----------------------------------------------------------------
> David Matlack (1):
>       kvm: x86: do not leak guest xcr0 into host interrupt handlers
> 
> Marc Zyngier (2):
>       KVM: arm/arm64: Handle forward time correction gracefully
>       arm64: KVM: Warn when PARange is less than 40 bits
> 
> Paolo Bonzini (2):
>       KVM: new maintainer on the block
>       KVM: x86: mask CPUID(0xD,0x1).EAX against host value
> 
> Radim Krčmář (1):
>       Merge tag 'kvm-arm-for-4.6-rc4' of git://git.kernel.org/.../kvmarm/kvmarm
> 
> Sudeep Holla (1):
>       arm64: KVM: unregister notifiers in hyp mode teardown path
> 
> Will Deacon (1):
>       arm64: KVM: Add braces to multi-line if statement in virtual PMU code
> 
> Xiao Guangrong (1):
>       KVM: MMU: fix permission_fault()
> 
>  MAINTAINERS                       |  2 +-
>  arch/arm/kvm/arm.c                | 13 ++++++++---
>  arch/arm64/include/asm/kvm_arm.h  |  6 ++---
>  arch/arm64/include/asm/kvm_asm.h  |  2 +-
>  arch/arm64/include/asm/kvm_host.h |  7 +++---
>  arch/arm64/kvm/hyp/s2-setup.c     | 39 +++++++++++++++++++++++++++++--
>  arch/x86/kvm/cpuid.c              |  1 +
>  arch/x86/kvm/mmu.h                |  9 ++++---
>  arch/x86/kvm/paging_tmpl.h        |  2 +-
>  arch/x86/kvm/x86.c                | 10 ++++----
>  virt/kvm/arm/arch_timer.c         | 49 +++++++++++++++++++++++++++++++--------
>  virt/kvm/arm/pmu.c                |  3 ++-
>  12 files changed, 106 insertions(+), 37 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
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-04-12 18:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-12 16:50 [GIT PULL] KVM changes for 4.6-rc4 Radim Krčmář
2016-04-12 18:34 ` Paolo Bonzini

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.