All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/12] 3.13 patch queue 2013-12-18 for 3.13
@ 2013-12-18 16:01 ` Alexander Graf
  0 siblings, 0 replies; 28+ messages in thread
From: Alexander Graf @ 2013-12-18 16:01 UTC (permalink / raw)
  To: kvm-ppc; +Cc: kvm@vger.kernel.org mailing list, Paolo Bonzini, Gleb Natapov

Hi Paolo / Gleb,

This is my current patch queue for 3.13.

It fixes some grave issues we've only found after 3.13-rc1:

  - Make the modularized HV/PR book3s kvm work well as modules
  - Fix some race conditions
  - Fix compilation with certain compilers (booke)
  - Fix THP for book3s_hv
  - Fix preemption for book3s_pr

Please pull.

Alex


The following changes since commit f080480488028bcc25357f85e8ae54ccc3bb7173:

  Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm (2013-11-15 13:51:36 +0900)

are available in the git repository at:


  git://github.com/agraf/linux-2.6.git tags/signed-for-3.13

for you to fetch changes up to df9059bb64023da9f27e56a94a3e2b8f4b6336a9:

  KVM: PPC: Book3S HV: Don't drop low-order page address bits (2013-12-18 11:30:35 +0100)

----------------------------------------------------------------
Patch queue for 3.13 - 2013-12-18

This fixes some grave issues we've only found after 3.13-rc1:

  - Make the modularized HV/PR book3s kvm work well as modules
  - Fix some race conditions
  - Fix compilation with certain compilers (booke)
  - Fix THP for book3s_hv
  - Fix preemption for book3s_pr

Alexander Graf (4):
      KVM: PPC: Book3S: PR: Don't clobber our exit handler id
      KVM: PPC: Book3S: PR: Export kvmppc_copy_to|from_svcpu
      KVM: PPC: Book3S: PR: Make svcpu -> vcpu store preempt savvy
      KVM: PPC: Book3S: PR: Enable interrupts earlier

Aneesh Kumar K.V (1):
      powerpc: book3s: kvm: Don't abuse host r2 in exit path

Paul Mackerras (5):
      KVM: PPC: Book3S HV: Fix physical address calculations
      KVM: PPC: Book3S HV: Refine barriers in guest entry/exit
      KVM: PPC: Book3S HV: Make tbacct_lock irq-safe
      KVM: PPC: Book3S HV: Take SRCU read lock around kvm_read_guest() call
      KVM: PPC: Book3S HV: Don't drop low-order page address bits

Scott Wood (1):
      powerpc/kvm/booke: Fix build break due to stack frame size warning

pingfan liu (1):
      powerpc: kvm: fix rare but potential deadlock scene

----------------------------------------------------------------
Alexander Graf (4):
      KVM: PPC: Book3S: PR: Don't clobber our exit handler id
      KVM: PPC: Book3S: PR: Export kvmppc_copy_to|from_svcpu
      KVM: PPC: Book3S: PR: Make svcpu -> vcpu store preempt savvy
      KVM: PPC: Book3S: PR: Enable interrupts earlier

Aneesh Kumar K.V (1):
      powerpc: book3s: kvm: Don't abuse host r2 in exit path

Paul Mackerras (5):
      KVM: PPC: Book3S HV: Fix physical address calculations
      KVM: PPC: Book3S HV: Refine barriers in guest entry/exit
      KVM: PPC: Book3S HV: Make tbacct_lock irq-safe
      KVM: PPC: Book3S HV: Take SRCU read lock around kvm_read_guest() call
      KVM: PPC: Book3S HV: Don't drop low-order page address bits

Scott Wood (1):
      powerpc/kvm/booke: Fix build break due to stack frame size warning

pingfan liu (1):
      powerpc: kvm: fix rare but potential deadlock scene

 arch/powerpc/include/asm/kvm_book3s.h     |  4 ++++
 arch/powerpc/include/asm/kvm_book3s_asm.h |  2 ++
 arch/powerpc/include/asm/switch_to.h      |  2 +-
 arch/powerpc/kernel/asm-offsets.c         |  1 +
 arch/powerpc/kernel/process.c             | 32 +++++++++++++++----------------
 arch/powerpc/kvm/book3s_64_mmu_hv.c       | 18 +++++++++++++----
 arch/powerpc/kvm/book3s_hv.c              | 24 +++++++++++++----------
 arch/powerpc/kvm/book3s_hv_rm_mmu.c       |  9 +++++++--
 arch/powerpc/kvm/book3s_hv_rmhandlers.S   | 23 ++++++++++++----------
 arch/powerpc/kvm/book3s_interrupts.S      | 19 ++++++++++--------
 arch/powerpc/kvm/book3s_pr.c              | 22 +++++++++++++++++++++
 arch/powerpc/kvm/book3s_rmhandlers.S      |  6 +-----
 arch/powerpc/kvm/booke.c                  | 12 ++++++------
 13 files changed, 112 insertions(+), 62 deletions(-)

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

end of thread, other threads:[~2013-12-20 18:20 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-18 16:01 [PULL 00/12] 3.13 patch queue 2013-12-18 for 3.13 Alexander Graf
2013-12-18 16:01 ` Alexander Graf
2013-12-18 16:01 ` [PULL 01/12] KVM: PPC: Book3S HV: Fix physical address calculations Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 02/12] KVM: PPC: Book3S HV: Refine barriers in guest entry/exit Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 03/12] KVM: PPC: Book3S HV: Make tbacct_lock irq-safe Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 04/12] KVM: PPC: Book3S HV: Take SRCU read lock around kvm_read_guest() call Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 05/12] powerpc: kvm: fix rare but potential deadlock scene Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 06/12] KVM: PPC: Book3S: PR: Don't clobber our exit handler id Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 07/12] KVM: PPC: Book3S: PR: Export kvmppc_copy_to|from_svcpu Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 08/12] KVM: PPC: Book3S: PR: Make svcpu -> vcpu store preempt savvy Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 09/12] KVM: PPC: Book3S: PR: Enable interrupts earlier Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 10/12] powerpc/kvm/booke: Fix build break due to stack frame size warning Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 11/12] powerpc: book3s: kvm: Don't abuse host r2 in exit path Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-18 16:01 ` [PULL 12/12] KVM: PPC: Book3S HV: Don't drop low-order page address bits Alexander Graf
2013-12-18 16:01   ` Alexander Graf
2013-12-20 18:20 ` [PULL 00/12] 3.13 patch queue 2013-12-18 for 3.13 Paolo Bonzini
2013-12-20 18:20   ` 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.