From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [PULL 00/12] ppc patch queue 2015-08-22 Date: Sat, 22 Aug 2015 15:32:20 -0700 Message-ID: <55D8F874.3030102@redhat.com> References: <1440235295-244203-1-git-send-email-agraf@suse.de> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Cc: KVM To: Alexander Graf , kvm-ppc Return-path: Received: from mail-pd0-f172.google.com ([209.85.192.172]:36717 "EHLO mail-pd0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750824AbbHVWcR (ORCPT ); Sat, 22 Aug 2015 18:32:17 -0400 In-Reply-To: <1440235295-244203-1-git-send-email-agraf@suse.de> Sender: kvm-owner@vger.kernel.org List-ID: 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 > From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Date: Sat, 22 Aug 2015 22:32:20 +0000 Subject: Re: [PULL 00/12] ppc patch queue 2015-08-22 Message-Id: <55D8F874.3030102@redhat.com> List-Id: References: <1440235295-244203-1-git-send-email-agraf@suse.de> In-Reply-To: <1440235295-244203-1-git-send-email-agraf@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Alexander Graf , kvm-ppc Cc: KVM 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 >