public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/18] ppc patch queue 2014-12-18
@ 2014-12-18  0:46 Alexander Graf
  2014-12-18  0:46 ` [PULL 01/18] KVM: PPC: BookE: Improve irq inject tracepoint Alexander Graf
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Alexander Graf @ 2014-12-18  0:46 UTC (permalink / raw)
  To: kvm-ppc; +Cc: kvm, pbonzini

Hi Paolo,

This is my current patch queue for ppc.  Please pull.

After the merge with Linus' tree, e500v2 compilation will be broken because
commit 69111bac42f5 broke it upstream. Could you please take care to apply the
fix I CC'ed you on for it?


Thanks!

Alex


The following changes since commit e08e833616f7eefebdacfd1d743d80ff3c3b2585:

  KVM: cpuid: recompute CPUID 0xD.0:EBX,ECX (2014-12-05 13:57:49 +0100)

are available in the git repository at:

  git://github.com/agraf/linux-2.6.git tags/signed-kvm-ppc-next

for you to fetch changes up to 476ce5ef09b21a76e74d07ff9d723ba0de49b53b:

  KVM: PPC: Book3S: Enable in-kernel XICS emulation by default (2014-12-17 22:23:22 +0100)

----------------------------------------------------------------
Patch queue for ppc - 2014-12-18

Highights this time around:

  - Removal of HV support for 970. It became a maintenance burden and received
    practically no testing. POWER8 with HV is available now, so just grab one
    of those boxes if PR isn't enough for you.
  - Some bug fixes and performance improvements
  - Tracepoints for book3s_hv

----------------------------------------------------------------
Alexander Graf (1):
      KVM: PPC: BookE: Improve irq inject tracepoint

Aneesh Kumar K.V (1):
      KVM: PPC: Book3S HV: Add missing HPTE unlock

Anton Blanchard (1):
      KVM: PPC: Book3S: Enable in-kernel XICS emulation by default

Cédric Le Goater (1):
      KVM: PPC: Book3S HV: ptes are big endian

Mahesh Salgaonkar (1):
      KVM: PPC: Book3S HV: Fix an issue where guest is paused on receiving HMI

Paul Mackerras (5):
      KVM: PPC: Book3S HV: Fix computation of tlbie operand
      KVM: PPC: Book3S HV: Fix KSM memory corruption
      KVM: PPC: Book3S HV: Simplify locking around stolen time calculations
      KVM: PPC: Book3S HV: Remove code for PPC970 processors
      KVM: PPC: Book3S HV: Fix endianness of instruction obtained from HEIR register

Rickard Strandqvist (4):
      arch: powerpc: kvm: book3s_32_mmu.c: Remove unused function
      arch: powerpc: kvm: book3s.c: Remove some unused functions
      arch: powerpc: kvm: book3s_pr.c: Remove unused function
      arch: powerpc: kvm: book3s_paired_singles.c: Remove unused function

Sam Bobroff (1):
      KVM: PPC: Book3S HV: Improve H_CONFER implementation

Suresh E. Warrier (3):
      KVM: PPC: Book3S HV: Fix inaccuracies in ICP emulation for H_IPI
      KVM: PPC: Book3S HV: Check wait conditions before sleeping in kvmppc_vcore_blocked
      KVM: PPC: Book3S HV: Tracepoints for KVM HV guest interactions

 arch/powerpc/include/asm/kvm_book3s.h    |   2 -
 arch/powerpc/include/asm/kvm_book3s_64.h |   3 +-
 arch/powerpc/include/asm/kvm_host.h      |  18 +-
 arch/powerpc/include/asm/kvm_ppc.h       |   2 -
 arch/powerpc/kernel/asm-offsets.c        |   2 +-
 arch/powerpc/kvm/Kconfig                 |   1 +
 arch/powerpc/kvm/book3s.c                |   8 -
 arch/powerpc/kvm/book3s_32_mmu.c         |   5 -
 arch/powerpc/kvm/book3s_64_mmu_hv.c      | 224 +++------------
 arch/powerpc/kvm/book3s_hv.c             | 438 ++++++++++------------------
 arch/powerpc/kvm/book3s_hv_builtin.c     | 136 +++------
 arch/powerpc/kvm/book3s_hv_interrupts.S  |  39 +--
 arch/powerpc/kvm/book3s_hv_ras.c         |   5 +-
 arch/powerpc/kvm/book3s_hv_rm_mmu.c      | 150 +++-------
 arch/powerpc/kvm/book3s_hv_rm_xics.c     |  36 ++-
 arch/powerpc/kvm/book3s_hv_rmhandlers.S  | 251 +---------------
 arch/powerpc/kvm/book3s_paired_singles.c |   8 -
 arch/powerpc/kvm/book3s_pr.c             |   5 -
 arch/powerpc/kvm/book3s_xics.c           |  30 +-
 arch/powerpc/kvm/book3s_xics.h           |   1 +
 arch/powerpc/kvm/e500.c                  |   8 -
 arch/powerpc/kvm/powerpc.c               |  10 +-
 arch/powerpc/kvm/trace_book3s.h          |  32 +++
 arch/powerpc/kvm/trace_booke.h           |  47 ++-
 arch/powerpc/kvm/trace_hv.h              | 477 +++++++++++++++++++++++++++++++
 arch/powerpc/kvm/trace_pr.h              |  25 +-
 26 files changed, 870 insertions(+), 1093 deletions(-)
 create mode 100644 arch/powerpc/kvm/trace_book3s.h
 create mode 100644 arch/powerpc/kvm/trace_hv.h

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

end of thread, other threads:[~2014-12-18 10:38 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-18  0:46 [PULL 00/18] ppc patch queue 2014-12-18 Alexander Graf
2014-12-18  0:46 ` [PULL 01/18] KVM: PPC: BookE: Improve irq inject tracepoint Alexander Graf
2014-12-18  0:46 ` [PULL 02/18] KVM: PPC: Book3S HV: Add missing HPTE unlock Alexander Graf
2014-12-18  0:46 ` [PULL 03/18] KVM: PPC: Book3S HV: Fix computation of tlbie operand Alexander Graf
2014-12-18  0:46 ` [PULL 04/18] KVM: PPC: Book3S HV: Fix an issue where guest is paused on receiving HMI Alexander Graf
2014-12-18  0:46 ` [PULL 05/18] KVM: PPC: Book3S HV: Fix KSM memory corruption Alexander Graf
2014-12-18  0:46 ` [PULL 06/18] KVM: PPC: Book3S HV: Fix inaccuracies in ICP emulation for H_IPI Alexander Graf
2014-12-18  0:46 ` [PULL 07/18] KVM: PPC: Book3S HV: ptes are big endian Alexander Graf
2014-12-18  0:46 ` [PULL 08/18] KVM: PPC: Book3S HV: Check wait conditions before sleeping in kvmppc_vcore_blocked Alexander Graf
2014-12-18  0:46 ` [PULL 09/18] arch: powerpc: kvm: book3s_32_mmu.c: Remove unused function Alexander Graf
2014-12-18  0:46 ` [PULL 10/18] arch: powerpc: kvm: book3s.c: Remove some unused functions Alexander Graf
2014-12-18  0:46 ` [PULL 11/18] arch: powerpc: kvm: book3s_pr.c: Remove unused function Alexander Graf
2014-12-18  0:46 ` [PULL 12/18] arch: powerpc: kvm: book3s_paired_singles.c: " Alexander Graf
2014-12-18  0:46 ` [PULL 13/18] KVM: PPC: Book3S HV: Simplify locking around stolen time calculations Alexander Graf
2014-12-18  0:46 ` [PULL 14/18] KVM: PPC: Book3S HV: Tracepoints for KVM HV guest interactions Alexander Graf
2014-12-18  0:46 ` [PULL 15/18] KVM: PPC: Book3S HV: Remove code for PPC970 processors Alexander Graf
2014-12-18  0:46 ` [PULL 16/18] KVM: PPC: Book3S HV: Fix endianness of instruction obtained from HEIR register Alexander Graf
2014-12-18  0:47 ` [PULL 17/18] KVM: PPC: Book3S HV: Improve H_CONFER implementation Alexander Graf
2014-12-18  0:47 ` [PULL 18/18] KVM: PPC: Book3S: Enable in-kernel XICS emulation by default Alexander Graf
2014-12-18 10:38 ` [PULL 00/18] ppc patch queue 2014-12-18 Paolo Bonzini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox