linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Second batch of KVM changes for 5.3 merge window
@ 2019-07-20 11:43 Paolo Bonzini
  2019-07-20 18:40 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Paolo Bonzini @ 2019-07-20 11:43 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, rkrcmar, kvm

Linus,

The following changes since commit 964a4eacef67503a1154f7e0a75f52fbdce52022:

  Merge tag 'dlm-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm (2019-07-12 17:37:53 -0700)

are available in the git repository at:


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

for you to fetch changes up to 30cd8604323dbaf20a80e797fe7057f5b02e394d:

  KVM: x86: Add fixed counters to PMU filter (2019-07-20 09:00:48 +0200)

----------------------------------------------------------------
Mostly bugfixes, but also:
- s390 support for KVM selftests
- LAPIC timer offloading to housekeeping CPUs
- Extend an s390 optimization for overcommitted hosts to all architectures
- Debugging cleanups and improvements

----------------------------------------------------------------
Arnd Bergmann (2):
      x86: kvm: avoid -Wsometimes-uninitized warning
      x86: kvm: avoid constant-conversion warning

Christian Borntraeger (1):
      KVM: selftests: enable pgste option for the linker on s390

Eric Hankland (1):
      KVM: x86: Add fixed counters to PMU filter

Jing Liu (1):
      KVM: x86: expose AVX512_BF16 feature to guest

Like Xu (2):
      KVM: x86/vPMU: reset pmc->counter to 0 for pmu fixed_counters
      KVM: x86/vPMU: refine kvm_pmu err msg when event creation failed

Liran Alon (2):
      KVM: nVMX: Ignore segment base for VMX memory operand when segment not FS or GS
      KVM: SVM: Fix detection of AMD Errata 1096

Paolo Bonzini (3):
      Merge tag 'kvm-s390-next-5.3-1' of git://git.kernel.org/.../kvms390/linux into HEAD
      KVM: VMX: dump VMCS on failed entry
      KVM: nVMX: do not use dangling shadow VMCS after guest reset

Thomas Huth (7):
      KVM: selftests: Guard struct kvm_vcpu_events with __KVM_HAVE_VCPU_EVENTS
      KVM: selftests: Introduce a VM_MODE_DEFAULT macro for the default bits
      KVM: selftests: Align memory region addresses to 1M on s390x
      KVM: selftests: Add processor code for s390x
      KVM: selftests: Add the sync_regs test for s390x
      KVM: selftests: Move kvm_create_max_vcpus test to generic code
      KVM: selftests: Remove superfluous define from vmx.c

Wanpeng Li (4):
      KVM: LAPIC: Make lapic timer unpinned
      KVM: LAPIC: Inject timer interrupt via posted interrupt
      KVM: Boost vCPUs that are delivering interrupts
      KVM: s390: Use kvm_vcpu_wake_up in kvm_s390_vcpu_wakeup

Yi Wang (3):
      kvm: vmx: fix coccinelle warnings
      kvm: x86: some tsc debug cleanup
      kvm: x86: ioapic and apic debug macros cleanup

 Documentation/virtual/kvm/api.txt                  |  15 +-
 MAINTAINERS                                        |   2 +
 arch/s390/kvm/interrupt.c                          |  23 +-
 arch/x86/include/uapi/asm/kvm.h                    |   9 +-
 arch/x86/kvm/cpuid.c                               |  12 +-
 arch/x86/kvm/hyperv.c                              |  20 +-
 arch/x86/kvm/ioapic.c                              |  15 --
 arch/x86/kvm/lapic.c                               | 202 ++++++---------
 arch/x86/kvm/lapic.h                               |   1 +
 arch/x86/kvm/mmu.c                                 |   6 +-
 arch/x86/kvm/pmu.c                                 |  27 +-
 arch/x86/kvm/svm.c                                 |  42 +++-
 arch/x86/kvm/vmx/nested.c                          |  13 +-
 arch/x86/kvm/vmx/pmu_intel.c                       |  11 +-
 arch/x86/kvm/vmx/vmx.c                             |   6 +-
 arch/x86/kvm/x86.c                                 |  20 +-
 arch/x86/kvm/x86.h                                 |   2 +
 include/linux/kvm_host.h                           |   1 +
 include/linux/sched/isolation.h                    |   6 +
 kernel/sched/isolation.c                           |   6 +
 tools/testing/selftests/kvm/Makefile               |  14 +-
 tools/testing/selftests/kvm/include/kvm_util.h     |   8 +
 .../selftests/kvm/include/s390x/processor.h        |  22 ++
 .../kvm/{x86_64 => }/kvm_create_max_vcpus.c        |   2 +-
 .../testing/selftests/kvm/lib/aarch64/processor.c  |   2 +-
 tools/testing/selftests/kvm/lib/kvm_util.c         |  23 +-
 tools/testing/selftests/kvm/lib/s390x/processor.c  | 278 +++++++++++++++++++++
 tools/testing/selftests/kvm/lib/x86_64/processor.c |   2 +-
 tools/testing/selftests/kvm/lib/x86_64/vmx.c       |   2 -
 tools/testing/selftests/kvm/s390x/sync_regs_test.c | 151 +++++++++++
 virt/kvm/kvm_main.c                                |  12 +-
 31 files changed, 723 insertions(+), 232 deletions(-)
 create mode 100644 tools/testing/selftests/kvm/include/s390x/processor.h
 rename tools/testing/selftests/kvm/{x86_64 => }/kvm_create_max_vcpus.c (95%)
 create mode 100644 tools/testing/selftests/kvm/lib/s390x/processor.c
 create mode 100644 tools/testing/selftests/kvm/s390x/sync_regs_test.c

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

* Re: [GIT PULL] Second batch of KVM changes for 5.3 merge window
  2019-07-20 11:43 [GIT PULL] Second batch of KVM changes for 5.3 merge window Paolo Bonzini
@ 2019-07-20 18:40 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2019-07-20 18:40 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: torvalds, linux-kernel, rkrcmar, kvm

The pull request you sent on Sat, 20 Jul 2019 13:43:07 +0200:

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

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/07ab9d5bc53d7fe84047be1d403566123ab9cfaa

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

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

end of thread, other threads:[~2019-07-20 18:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-20 11:43 [GIT PULL] Second batch of KVM changes for 5.3 merge window Paolo Bonzini
2019-07-20 18:40 ` pr-tracker-bot

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