kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/14] ppc patch queue 2011-10-31
@ 2011-10-31  7:53 Alexander Graf
  2011-10-31  7:53 ` [PATCH 01/14] KVM: PPC: e500: don't translate gfn to pfn with preemption disabled Alexander Graf
                   ` (13 more replies)
  0 siblings, 14 replies; 41+ messages in thread
From: Alexander Graf @ 2011-10-31  7:53 UTC (permalink / raw)
  To: kvm-ppc; +Cc: kvm list, Marcelo Tosatti

Hi Avi / Marcelo,

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

Alex


The following changes since commit b796a09c5d808f4013f27ad45953db604dac18fd:
  Marcelo Tosatti (1):
        Merge remote-tracking branch 'upstream/master' into kvm-devel

are available in the git repository at:

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

Alexander Graf (7):
      KVM: PPC: Fix build failure with HV KVM and CBE
      Revert "KVM: PPC: Add support for explicit HIOR setting"
      KVM: PPC: Add generic single register ioctls
      KVM: PPC: Add support for explicit HIOR setting
      KVM: PPC: Whitespace fix for kvm.h
      KVM: Fix whitespace in kvm_para.h
      KVM: PPC: E500: Support hugetlbfs

Bharat Bhushan (1):
      PPC: Fix race in mtmsr paravirt implementation

Scott Wood (6):
      KVM: PPC: e500: don't translate gfn to pfn with preemption disabled
      KVM: PPC: e500: Eliminate preempt_disable in local_sid_destroy_all
      KVM: PPC: e500: clear up confusion between host and guest entries
      KVM: PPC: e500: MMU API
      KVM: PPC: e500: tlbsx: fix tlb0 esel
      KVM: PPC: e500: Don't hardcode PIR=0

 Documentation/virtual/kvm/api.txt     |  122 ++++++
 arch/powerpc/include/asm/kvm.h        |   49 ++-
 arch/powerpc/include/asm/kvm_book3s.h |    2 +-
 arch/powerpc/include/asm/kvm_e500.h   |   46 ++-
 arch/powerpc/include/asm/kvm_ppc.h    |    5 +
 arch/powerpc/include/asm/mmu-book3e.h |    1 +
 arch/powerpc/kernel/exceptions-64s.S  |    6 +-
 arch/powerpc/kernel/kvm_emul.S        |   10 +-
 arch/powerpc/kvm/book3s_pr.c          |   12 +-
 arch/powerpc/kvm/booke.c              |    4 +-
 arch/powerpc/kvm/e500.c               |    8 +-
 arch/powerpc/kvm/e500_emulate.c       |   12 +-
 arch/powerpc/kvm/e500_tlb.c           |  674 +++++++++++++++++++++++----------
 arch/powerpc/kvm/e500_tlb.h           |   55 +--
 arch/powerpc/kvm/powerpc.c            |   92 +++++
 include/linux/kvm.h                   |   50 +++
 include/linux/kvm_para.h              |    1 -
 17 files changed, 865 insertions(+), 284 deletions(-)

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

end of thread, other threads:[~2011-12-19 17:29 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-31  7:53 [PULL 00/14] ppc patch queue 2011-10-31 Alexander Graf
2011-10-31  7:53 ` [PATCH 01/14] KVM: PPC: e500: don't translate gfn to pfn with preemption disabled Alexander Graf
2011-10-31 12:50   ` Avi Kivity
2011-10-31 18:52     ` Scott Wood
2011-11-01  9:00       ` Avi Kivity
2011-10-31  7:53 ` [PATCH 02/14] KVM: PPC: e500: Eliminate preempt_disable in local_sid_destroy_all Alexander Graf
2011-10-31  7:53 ` [PATCH 03/14] KVM: PPC: e500: clear up confusion between host and guest entries Alexander Graf
2011-10-31  7:53 ` [PATCH 04/14] KVM: PPC: e500: MMU API Alexander Graf
2011-10-31 13:24   ` Avi Kivity
2011-10-31 20:12     ` Scott Wood
2011-11-01  8:58       ` Avi Kivity
2011-11-01  9:55         ` Avi Kivity
2011-11-01 16:16         ` Scott Wood
2011-11-02 10:33           ` Avi Kivity
2011-11-10 14:20           ` Alexander Graf
2011-11-10 14:16             ` Avi Kivity
2011-10-31  7:53 ` [PATCH 05/14] KVM: PPC: e500: tlbsx: fix tlb0 esel Alexander Graf
2011-10-31  7:53 ` [PATCH 06/14] KVM: PPC: e500: Don't hardcode PIR=0 Alexander Graf
2011-10-31 13:27   ` Avi Kivity
2011-10-31  7:53 ` [PATCH 07/14] KVM: PPC: Fix build failure with HV KVM and CBE Alexander Graf
2011-10-31  7:53 ` [PATCH 08/14] Revert "KVM: PPC: Add support for explicit HIOR setting" Alexander Graf
2011-10-31 13:30   ` Avi Kivity
2011-10-31 23:49     ` Alexander Graf
2011-10-31  7:53 ` [PATCH 09/14] KVM: PPC: Add generic single register ioctls Alexander Graf
2011-10-31 13:36   ` Avi Kivity
2011-10-31 17:26     ` Jan Kiszka
2011-11-10 14:22     ` Alexander Graf
2011-11-10 16:05   ` Marcelo Tosatti
2011-11-10 16:49     ` Alexander Graf
2011-11-10 17:35       ` Marcelo Tosatti
2011-11-15 23:45         ` Alexander Graf
2011-11-23 12:47           ` Marcelo Tosatti
2011-12-19 12:58             ` Alexander Graf
2011-12-19 17:29               ` Marcelo Tosatti
2011-10-31  7:53 ` [PATCH 10/14] KVM: PPC: Add support for explicit HIOR setting Alexander Graf
2011-10-31  7:53 ` [PATCH 11/14] KVM: PPC: Whitespace fix for kvm.h Alexander Graf
2011-10-31  7:53 ` [PATCH 12/14] KVM: Fix whitespace in kvm_para.h Alexander Graf
2011-10-31  7:53 ` [PATCH 13/14] KVM: PPC: E500: Support hugetlbfs Alexander Graf
2011-10-31 13:38   ` Avi Kivity
2011-11-10 14:24     ` Alexander Graf
2011-10-31  7:53 ` [PATCH 14/14] PPC: Fix race in mtmsr paravirt implementation Alexander Graf

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