mbox

[PULL,00/12] ppc patch queue 2015-08-22

Message ID 1440235295-244203-1-git-send-email-agraf@suse.de
State Not Applicable, archived
Headers show

Pull-request

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

Message

Alexander Graf Aug. 22, 2015, 9:21 a.m. UTC
Hi Paolo,

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

Alex


The following changes since commit 4d283ec908e617fa28bcb06bce310206f0655d67:

  x86/kvm: Rename VMX's segment access rights defines (2015-08-15 00:47:13 +0200)

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 c63517c2e3810071359af926f621c1f784388c3f:

  KVM: PPC: Book3S: correct width in XER handling (2015-08-22 11:16:19 +0200)

----------------------------------------------------------------
Patch queue for ppc - 2015-08-22

Highlights for KVM PPC this time around:

  - Book3S: A few bug fixes
  - Book3S: Allow micro-threading on POWER8

----------------------------------------------------------------
Paul Mackerras (7):
      KVM: PPC: Book3S HV: Make use of unused threads when running guests
      KVM: PPC: Book3S HV: Implement dynamic micro-threading on POWER8
      KVM: PPC: Book3S HV: Fix race in reading change bit when removing HPTE
      KVM: PPC: Book3S HV: Fix bug in dirty page tracking
      KVM: PPC: Book3S HV: Implement H_CLEAR_REF and H_CLEAR_MOD
      KVM: PPC: Book3S HV: Fix preempted vcore list locking
      KVM: PPC: Book3S HV: Fix preempted vcore stolen time calculation

Sam bobroff (1):
      KVM: PPC: Book3S: correct width in XER handling

Thomas Huth (2):
      KVM: PPC: Remove PPC970 from KVM_BOOK3S_64_HV text in Kconfig
      KVM: PPC: Fix warnings from sparse

Tudor Laurentiu (2):
      KVM: PPC: fix suspicious use of conditional operator
      KVM: PPC: add missing pt_regs initialization

 arch/powerpc/include/asm/kvm_book3s.h     |   5 +-
 arch/powerpc/include/asm/kvm_book3s_asm.h |  22 +-
 arch/powerpc/include/asm/kvm_booke.h      |   4 +-
 arch/powerpc/include/asm/kvm_host.h       |  24 +-
 arch/powerpc/include/asm/ppc-opcode.h     |   2 +-
 arch/powerpc/kernel/asm-offsets.c         |   9 +
 arch/powerpc/kvm/Kconfig                  |   8 +-
 arch/powerpc/kvm/book3s.c                 |   3 +-
 arch/powerpc/kvm/book3s_32_mmu_host.c     |   1 +
 arch/powerpc/kvm/book3s_64_mmu_host.c     |   1 +
 arch/powerpc/kvm/book3s_64_mmu_hv.c       |   8 +-
 arch/powerpc/kvm/book3s_emulate.c         |   1 +
 arch/powerpc/kvm/book3s_hv.c              | 660 ++++++++++++++++++++++++++----
 arch/powerpc/kvm/book3s_hv_builtin.c      |  32 +-
 arch/powerpc/kvm/book3s_hv_rm_mmu.c       | 161 +++++++-
 arch/powerpc/kvm/book3s_hv_rm_xics.c      |   4 +-
 arch/powerpc/kvm/book3s_hv_rmhandlers.S   | 128 +++++-
 arch/powerpc/kvm/book3s_paired_singles.c  |   2 +-
 arch/powerpc/kvm/book3s_segment.S         |   4 +-
 arch/powerpc/kvm/booke.c                  |   1 +
 arch/powerpc/kvm/e500_mmu.c               |   2 +-
 arch/powerpc/kvm/powerpc.c                |   2 +-
 22 files changed, 938 insertions(+), 146 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe kvm-ppc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Paolo Bonzini Aug. 22, 2015, 10:32 p.m. UTC | #1
On 22/08/2015 02:21, Alexander Graf wrote:
> Hi Paolo,
> 
> This is my current patch queue for ppc.  Please pull.

Done, but this queue has not been in linux-next.  Please push to
kvm-ppc-next on your github Linux tree as well; please keep an eye on
Steven Rothwell's messages in the next few days, and I'll send the pull
request sometimes next week via webmail if everything goes fine.

Paolo

> Alex
> 
> 
> The following changes since commit 4d283ec908e617fa28bcb06bce310206f0655d67:
> 
>   x86/kvm: Rename VMX's segment access rights defines (2015-08-15 00:47:13 +0200)
> 
> 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 c63517c2e3810071359af926f621c1f784388c3f:
> 
>   KVM: PPC: Book3S: correct width in XER handling (2015-08-22 11:16:19 +0200)
> 
> ----------------------------------------------------------------
> Patch queue for ppc - 2015-08-22
> 
> Highlights for KVM PPC this time around:
> 
>   - Book3S: A few bug fixes
>   - Book3S: Allow micro-threading on POWER8
> 
> ----------------------------------------------------------------
> Paul Mackerras (7):
>       KVM: PPC: Book3S HV: Make use of unused threads when running guests
>       KVM: PPC: Book3S HV: Implement dynamic micro-threading on POWER8
>       KVM: PPC: Book3S HV: Fix race in reading change bit when removing HPTE
>       KVM: PPC: Book3S HV: Fix bug in dirty page tracking
>       KVM: PPC: Book3S HV: Implement H_CLEAR_REF and H_CLEAR_MOD
>       KVM: PPC: Book3S HV: Fix preempted vcore list locking
>       KVM: PPC: Book3S HV: Fix preempted vcore stolen time calculation
> 
> Sam bobroff (1):
>       KVM: PPC: Book3S: correct width in XER handling
> 
> Thomas Huth (2):
>       KVM: PPC: Remove PPC970 from KVM_BOOK3S_64_HV text in Kconfig
>       KVM: PPC: Fix warnings from sparse
> 
> Tudor Laurentiu (2):
>       KVM: PPC: fix suspicious use of conditional operator
>       KVM: PPC: add missing pt_regs initialization
> 
>  arch/powerpc/include/asm/kvm_book3s.h     |   5 +-
>  arch/powerpc/include/asm/kvm_book3s_asm.h |  22 +-
>  arch/powerpc/include/asm/kvm_booke.h      |   4 +-
>  arch/powerpc/include/asm/kvm_host.h       |  24 +-
>  arch/powerpc/include/asm/ppc-opcode.h     |   2 +-
>  arch/powerpc/kernel/asm-offsets.c         |   9 +
>  arch/powerpc/kvm/Kconfig                  |   8 +-
>  arch/powerpc/kvm/book3s.c                 |   3 +-
>  arch/powerpc/kvm/book3s_32_mmu_host.c     |   1 +
>  arch/powerpc/kvm/book3s_64_mmu_host.c     |   1 +
>  arch/powerpc/kvm/book3s_64_mmu_hv.c       |   8 +-
>  arch/powerpc/kvm/book3s_emulate.c         |   1 +
>  arch/powerpc/kvm/book3s_hv.c              | 660 ++++++++++++++++++++++++++----
>  arch/powerpc/kvm/book3s_hv_builtin.c      |  32 +-
>  arch/powerpc/kvm/book3s_hv_rm_mmu.c       | 161 +++++++-
>  arch/powerpc/kvm/book3s_hv_rm_xics.c      |   4 +-
>  arch/powerpc/kvm/book3s_hv_rmhandlers.S   | 128 +++++-
>  arch/powerpc/kvm/book3s_paired_singles.c  |   2 +-
>  arch/powerpc/kvm/book3s_segment.S         |   4 +-
>  arch/powerpc/kvm/booke.c                  |   1 +
>  arch/powerpc/kvm/e500_mmu.c               |   2 +-
>  arch/powerpc/kvm/powerpc.c                |   2 +-
>  22 files changed, 938 insertions(+), 146 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe kvm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
--
To unsubscribe from this list: send the line "unsubscribe kvm-ppc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Alexander Graf Aug. 24, 2015, 4:49 a.m. UTC | #2
On 22.08.15 15:32, Paolo Bonzini wrote:
> 
> 
> On 22/08/2015 02:21, Alexander Graf wrote:
>> Hi Paolo,
>>
>> This is my current patch queue for ppc.  Please pull.
> 
> Done, but this queue has not been in linux-next.  Please push to
> kvm-ppc-next on your github Linux tree as well; please keep an eye on

Ah, sorry. I pushed to kvm-ppc-next in parallel to sending the request.

> Steven Rothwell's messages in the next few days, and I'll send the pull
> request sometimes next week via webmail if everything goes fine.

Nothing exciting came in so far, so I hope we're good :).


Alex
--
To unsubscribe from this list: send the line "unsubscribe kvm-ppc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Paolo Bonzini Aug. 24, 2015, 8:52 a.m. UTC | #3
On 24/08/2015 06:49, Alexander Graf wrote:
> > > Hi Paolo,
> > >
> > > This is my current patch queue for ppc.  Please pull.
> > 
> > Done, but this queue has not been in linux-next.  Please push to
> > kvm-ppc-next on your github Linux tree as well; please keep an eye on
> 
> Ah, sorry. I pushed to kvm-ppc-next in parallel to sending the request.

No problem, and Linus in the end did do an rc8 so I can wait till I'm
back for sending the PPC/ARM pull request.

Paolo
--
To unsubscribe from this list: send the line "unsubscribe kvm-ppc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html