From patchwork Fri Jan 15 07:04:32 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Gibson X-Patchwork-Id: 567949 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 19C6D140C00 for ; Fri, 15 Jan 2016 18:04:35 +1100 (AEDT) Received: from localhost ([::1]:45585 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJyQy-0000Ol-MQ for incoming@patchwork.ozlabs.org; Fri, 15 Jan 2016 02:04:32 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49389) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJyQO-0007b9-Dw for qemu-devel@nongnu.org; Fri, 15 Jan 2016 02:03:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aJyQJ-0001hp-Sr for qemu-devel@nongnu.org; Fri, 15 Jan 2016 02:03:56 -0500 Received: from ozlabs.org ([103.22.144.67]:47272) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJyQJ-0001hR-I2; Fri, 15 Jan 2016 02:03:51 -0500 Received: by ozlabs.org (Postfix, from userid 1007) id 82965140BFC; Fri, 15 Jan 2016 18:03:47 +1100 (AEDT) From: David Gibson To: benh@kernel.crashing.org Date: Fri, 15 Jan 2016 18:04:32 +1100 Message-Id: <1452841480-13325-2-git-send-email-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1452841480-13325-1-git-send-email-david@gibson.dropbear.id.au> References: <1452841480-13325-1-git-send-email-david@gibson.dropbear.id.au> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 103.22.144.67 Cc: aik@ozlabs.ru, agraf@suse.de, qemu-devel@nongnu.org, av1474@comtv.ru, qemu-ppc@nongnu.org, David Gibson Subject: [Qemu-devel] [RFC 1/9] target-ppc: Remove unused kvmppc_read_segment_page_sizes() stub X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This stub function is in the !KVM ifdef in target-ppc/kvm_ppc.h. However no such function exists on the KVM side, or is ever used. I think this originally referenced a function which read host page size information from /proc, for we we now use the KVM GET_SMMU_INFO extension instead. In any case, it has no function now, so remove it. Signed-off-by: David Gibson --- target-ppc/kvm_ppc.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/target-ppc/kvm_ppc.h b/target-ppc/kvm_ppc.h index 5e1333d..62406ce 100644 --- a/target-ppc/kvm_ppc.h +++ b/target-ppc/kvm_ppc.h @@ -98,11 +98,6 @@ static inline int kvmppc_get_hypercall(CPUPPCState *env, uint8_t *buf, int buf_l return -1; } -static inline int kvmppc_read_segment_page_sizes(uint32_t *prop, int maxcells) -{ - return -1; -} - static inline int kvmppc_set_interrupt(PowerPCCPU *cpu, int irq, int level) { return -1;