From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49080) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFO9W-00076P-Qe for qemu-devel@nongnu.org; Mon, 17 Feb 2014 08:22:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WFO9O-0001kT-3G for qemu-devel@nongnu.org; Mon, 17 Feb 2014 08:22:30 -0500 Received: from e06smtp17.uk.ibm.com ([195.75.94.113]:40159) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WFO9N-0001k8-PA for qemu-devel@nongnu.org; Mon, 17 Feb 2014 08:22:22 -0500 Received: from /spool/local by e06smtp17.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 17 Feb 2014 13:22:19 -0000 From: Greg Kurz Date: Mon, 17 Feb 2014 14:22:14 +0100 Message-ID: <20140217132213.25977.96973.stgit@bahia.local> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 0/4] target-ppc: htab fixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: agraf@suse.de, aneesh.kumar@linux.vnet.ibm.com Cc: paulus@samba.org, qemu-ppc@nongnu.org, qemu-devel@nongnu.org Hi, This is a new tentative for the patches 2/5 to 5/5 from the "target-ppc: Add support for dumping guest memory using qemu gdb server" patchset: https://lists.nongnu.org/archive/html/qemu-ppc/2014-01/msg00380.html All patches have been rebased on the current ppc-next head (72c798d7dccc). To ensure proper bisectability, the following was verified for each individual patch: •- 32 and 64 bit build of ppc-softmmu and ppc64-softmmu (fedora 19 ppc64) •- 64 bit pseries guest with KVM on a POWER7 host (fedora 19 ppc64) •- 64 bit pseries guest with 64 bit TCG on a x86_64 host (fedora 19 ppc64) •- 64 bit pseries guest with 32 bit TCG on a x86_64 host (fedora 19 ppc64) •- 32 bit mac99 guest with 64 bit TCG on a x86_64 host (wheezy ppc) •- 32 bit mac99 guest with 32 bit TCG on a x86_64 host (wheezy ppc) Alex, This should address all the requirements you expressed in your last mail. Please tell me if something is missing. Best regards. --- Aneesh Kumar K.V (4): target-ppc: Fix htab_mask calculation target-ppc: Fix page table lookup with kvm enabled target-ppc: Change the hpte store API target-ppc: Update ppc_hash64_store_hpte to support updating in-kernel htab hw/ppc/spapr.c | 9 ++++ hw/ppc/spapr_hcall.c | 81 ++++++++++++++++++++++--------------- target-ppc/cpu.h | 1 target-ppc/kvm.c | 93 ++++++++++++++++++++++++++++++++++++++++++ target-ppc/kvm_ppc.h | 29 +++++++++++++ target-ppc/machine.c | 11 +++-- target-ppc/misc_helper.c | 4 +- target-ppc/mmu-hash64.c | 101 +++++++++++++++++++++++++++++++++++++++------- target-ppc/mmu-hash64.h | 47 ++++++++------------- target-ppc/mmu_helper.c | 3 + 10 files changed, 293 insertions(+), 86 deletions(-) -- Greg