From patchwork Wed May 30 09:54:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 161920 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 10A13B7037 for ; Wed, 30 May 2012 19:54:52 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751203Ab2E3Jyv (ORCPT ); Wed, 30 May 2012 05:54:51 -0400 Received: from cantor2.suse.de ([195.135.220.15]:48301 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751130Ab2E3Jyu (ORCPT ); Wed, 30 May 2012 05:54:50 -0400 Received: from relay1.suse.de (unknown [195.135.220.254]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id 00D999141C; Wed, 30 May 2012 11:54:48 +0200 (CEST) From: Alexander Graf To: "kvm@vger.kernel.org list" Cc: Avi Kivity , kvm-ppc , Marcelo Tossati Subject: [PULL 0/4] ppc patch queue 2012-05-30 Date: Wed, 30 May 2012 11:54:42 +0200 Message-Id: <1338371686-8194-1-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.6.0.2 Sender: kvm-ppc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm-ppc@vger.kernel.org Hi Avi, This is my current patch queue for ppc. Please pull. Changes this time include: - Generalize KVM_GUEST support to overall ePAPR code - Fix reset for Book3S HV - Fix machine check deferral when CONFIG_KVM_GUEST=y - Add support for BookE register DECAR Alex The following changes since commit b48b2c3e50433ff6f7e46186daa7f986bd960215: Jonas Bonn (1): openrisc: use generic strnlen_user() function are available in the git repository at: git://github.com/agraf/linux-2.6.git for-upstream Bharat Bhushan (2): KVM: PPC: booke: Added DECAR support KVM: PPC: Not optimizing MSR_CE and MSR_ME with paravirt. Liu Yu-B13201 (1): KVM: PPC: Factor out guest epapr initialization Paul Mackerras (1): KVM: PPC: Book3S HV: Make the guest hash table size configurable Documentation/virtual/kvm/api.txt | 36 +++++++++ Documentation/virtual/kvm/ppc-pv.txt | 2 - arch/powerpc/include/asm/epapr_hcalls.h | 2 + arch/powerpc/include/asm/kvm_book3s_64.h | 7 +- arch/powerpc/include/asm/kvm_host.h | 6 ++ arch/powerpc/include/asm/kvm_ppc.h | 3 +- arch/powerpc/kernel/Makefile | 1 + arch/powerpc/kernel/epapr_hcalls.S | 25 ++++++ arch/powerpc/kernel/epapr_paravirt.c | 52 +++++++++++++ arch/powerpc/kernel/kvm.c | 28 +------ arch/powerpc/kernel/kvm_emul.S | 12 +--- arch/powerpc/kvm/book3s_64_mmu_hv.c | 123 +++++++++++++++++++++++------- arch/powerpc/kvm/book3s_hv.c | 40 +++++++--- arch/powerpc/kvm/book3s_hv_builtin.c | 5 +- arch/powerpc/kvm/book3s_hv_rm_mmu.c | 15 ++-- arch/powerpc/kvm/booke.c | 5 + arch/powerpc/kvm/booke_emulate.c | 3 + arch/powerpc/kvm/e500_emulate.c | 3 + arch/powerpc/kvm/powerpc.c | 18 +++++ arch/powerpc/platforms/Kconfig | 9 ++ include/linux/kvm.h | 3 + 21 files changed, 306 insertions(+), 92 deletions(-) create mode 100644 arch/powerpc/kernel/epapr_hcalls.S create mode 100644 arch/powerpc/kernel/epapr_paravirt.c --- 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