public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/15] PPC KVM patch queue 2011-06-15
@ 2011-06-17 14:49 Alexander Graf
  2011-06-17 14:49 ` [PATCH 01/15] KVM: PPC: fix partial application of "exit timing in ticks" Alexander Graf
                   ` (15 more replies)
  0 siblings, 16 replies; 20+ messages in thread
From: Alexander Graf @ 2011-06-17 14:49 UTC (permalink / raw)
  To: KVM list; +Cc: kvm-ppc

Hi Avi/Marcelo,

This is my current patch queue for PPC KVM. Please apply.

Alex

The following changes since commit 681fb677ace0754589792c92b8dbee9884d07158:
  Jan Kiszka (1):
        KVM: Clarify KVM_ASSIGN_PCI_DEVICE documentation

are available in the git repository at:

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

Alexander Graf (2):
      KVM: PPC: Resolve real-mode handlers through function exports
      KVM: Add compat ioctl for KVM_SET_SIGNAL_MASK

Liu Yu (2):
      KVM: PPC: e500: Stop keeping shadow TLB
      KVM: PPC: e500: Add shadow PID support

Scott Wood (9):
      powerpc/e500: SPE register saving: take arbitrary struct offset
      KVM: PPC: booke: use shadow_msr
      KVM: PPC: e500: Save/restore SPE state
      KVM: PPC: e500: Disable preloading TLB1 in tlb_load().
      KVM: PPC: e500: don't use MAS0 as intermediate storage.
      KVM: PPC: e500: Eliminate shadow_pages[], and use pfns instead.
      KVM: PPC: e500: Support large page mappings of PFNMAP vmas.
      KVM: PPC: e500: enable magic page
      KVM: PPC: e500: Don't search over the entire TLB0.

Stuart Yoder (1):
      KVM: PPC: fix partial application of "exit timing in ticks"

yu liu (1):
      powerpc/e500: Save SPEFCSR in flush_spe_to_thread()

 Documentation/virtual/kvm/ppc-pv.txt  |    8 +-
 arch/powerpc/include/asm/kvm_book3s.h |    4 +-
 arch/powerpc/include/asm/kvm_e500.h   |   30 +-
 arch/powerpc/include/asm/kvm_host.h   |    9 +-
 arch/powerpc/include/asm/kvm_ppc.h    |    1 +
 arch/powerpc/include/asm/ppc_asm.h    |   28 +-
 arch/powerpc/include/asm/reg_booke.h  |    1 +
 arch/powerpc/kernel/asm-offsets.c     |   10 +-
 arch/powerpc/kernel/head_fsl_booke.S  |    8 +-
 arch/powerpc/kernel/process.c         |    1 +
 arch/powerpc/kernel/traps.c           |    5 +-
 arch/powerpc/kvm/44x_tlb.c            |    4 +-
 arch/powerpc/kvm/book3s.c             |    4 +-
 arch/powerpc/kvm/book3s_exports.c     |    4 +-
 arch/powerpc/kvm/book3s_rmhandlers.S  |    8 -
 arch/powerpc/kvm/booke.c              |   99 ++++-
 arch/powerpc/kvm/booke.h              |   23 +-
 arch/powerpc/kvm/booke_interrupts.S   |   66 +++-
 arch/powerpc/kvm/e500.c               |    7 +-
 arch/powerpc/kvm/e500_emulate.c       |    4 +
 arch/powerpc/kvm/e500_tlb.c           |  800 +++++++++++++++++++++++----------
 arch/powerpc/kvm/e500_tlb.h           |   13 +-
 arch/powerpc/kvm/powerpc.c            |    3 +-
 arch/powerpc/kvm/timing.c             |    9 -
 kernel/compat.c                       |    1 +
 virt/kvm/kvm_main.c                   |   52 +++-
 26 files changed, 864 insertions(+), 338 deletions(-)

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

end of thread, other threads:[~2011-06-19 13:01 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-17 14:49 [PULL 00/15] PPC KVM patch queue 2011-06-15 Alexander Graf
2011-06-17 14:49 ` [PATCH 01/15] KVM: PPC: fix partial application of "exit timing in ticks" Alexander Graf
2011-06-17 14:49 ` [PATCH 02/15] KVM: PPC: Resolve real-mode handlers through function exports Alexander Graf
2011-06-17 14:49 ` [PATCH 03/15] KVM: Add compat ioctl for KVM_SET_SIGNAL_MASK Alexander Graf
2011-06-19  9:04   ` Avi Kivity
2011-06-19 12:53     ` Alexander Graf
2011-06-19 13:01       ` Avi Kivity
2011-06-17 14:49 ` [PATCH 04/15] powerpc/e500: Save SPEFCSR in flush_spe_to_thread() Alexander Graf
2011-06-17 14:49 ` [PATCH 05/15] powerpc/e500: SPE register saving: take arbitrary struct offset Alexander Graf
2011-06-17 14:49 ` [PATCH 06/15] KVM: PPC: booke: use shadow_msr Alexander Graf
2011-06-17 14:49 ` [PATCH 07/15] KVM: PPC: e500: Save/restore SPE state Alexander Graf
2011-06-17 14:49 ` [PATCH 08/15] KVM: PPC: e500: Disable preloading TLB1 in tlb_load() Alexander Graf
2011-06-17 14:49 ` [PATCH 09/15] KVM: PPC: e500: don't use MAS0 as intermediate storage Alexander Graf
2011-06-17 14:49 ` [PATCH 10/15] KVM: PPC: e500: Eliminate shadow_pages[], and use pfns instead Alexander Graf
2011-06-17 14:49 ` [PATCH 11/15] KVM: PPC: e500: Support large page mappings of PFNMAP vmas Alexander Graf
2011-06-17 14:49 ` [PATCH 12/15] KVM: PPC: e500: enable magic page Alexander Graf
2011-06-17 14:49 ` [PATCH 13/15] KVM: PPC: e500: Stop keeping shadow TLB Alexander Graf
2011-06-17 14:49 ` [PATCH 14/15] KVM: PPC: e500: Add shadow PID support Alexander Graf
2011-06-17 14:49 ` [PATCH 15/15] KVM: PPC: e500: Don't search over the entire TLB0 Alexander Graf
2011-06-19  9:11 ` [PULL 00/15] PPC KVM patch queue 2011-06-15 Avi Kivity

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