From nobody Thu Sep 19 02:00:48 2024 Delivered-To: importer@patchew.org Received-SPF: temperror (zoho.com: Error in retrieving data from DNS) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; dkim=fail; spf=temperror (zoho.com: Error in retrieving data from DNS) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (209.51.188.17 [209.51.188.17]) by mx.zohomail.com with SMTPS id 1549271956033316.117947365364; Mon, 4 Feb 2019 01:19:16 -0800 (PST) Received: from localhost ([127.0.0.1]:39155 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gqaPA-0006Bt-66 for importer@patchew.org; Mon, 04 Feb 2019 04:19:04 -0500 Received: from eggs.gnu.org ([209.51.188.92]:38419) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gqa8j-0000dH-R8 for qemu-devel@nongnu.org; Mon, 04 Feb 2019 04:02:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gqa8h-0007mD-W7 for qemu-devel@nongnu.org; Mon, 04 Feb 2019 04:02:05 -0500 Received: from ozlabs.org ([2401:3900:2:1::2]:52971) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gqa8h-0007fA-Io; Mon, 04 Feb 2019 04:02:03 -0500 Received: by ozlabs.org (Postfix, from userid 1007) id 43tMC85xd8z9sP1; Mon, 4 Feb 2019 20:01:38 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gibson.dropbear.id.au; s=201602; t=1549270900; bh=zqjrrV3SaINA9mI//6wBWbCNVarUurGLeaFlVKznxes=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=XEDpp13Do8jdFDdyi2R1EAMpbl3slBd/aSvn9GblXGzvsJud6R6HL2k6Lu+aiTqOm 7dtQMMjoyYPI9tKYt+kOuxHZlIfGcZVDTBJy1KQn7239o7rdxkTmySHI9A22aCrKLJ R6/+zghPoT0J0JuVPpmf1z5ppy9NnzI/KLmGmxrU= From: David Gibson To: peter.maydell@linaro.org Date: Mon, 4 Feb 2019 20:01:06 +1100 Message-Id: <20190204090124.26191-20-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190204090124.26191-1-david@gibson.dropbear.id.au> References: <20190204090124.26191-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2401:3900:2:1::2 Subject: [Qemu-devel] [PULL 19/37] ppc: remove the interrupt presenters from under PowerPCCPU X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: lvivier@redhat.com, qemu-devel@nongnu.org, groug@kaod.org, spopovyc@redhat.com, qemu-ppc@nongnu.org, clg@kaod.org, David Gibson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail-DKIM: fail (Header signature does not verify) Content-Type: text/plain; charset="utf-8" From: C=C3=A9dric Le Goater These fields have now been replaced by equivalents under the machine data. Signed-off-by: C=C3=A9dric Le Goater Reviewed-by: Greg Kurz Signed-off-by: David Gibson --- target/ppc/cpu.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h index a62ff60414..2c22292e7f 100644 --- a/target/ppc/cpu.h +++ b/target/ppc/cpu.h @@ -1178,9 +1178,6 @@ do { \ typedef struct PPCVirtualHypervisor PPCVirtualHypervisor; typedef struct PPCVirtualHypervisorClass PPCVirtualHypervisorClass; =20 -struct XiveTCTX; -struct ICPState; - /** * PowerPCCPU: * @env: #CPUPPCState @@ -1198,8 +1195,6 @@ struct PowerPCCPU { int vcpu_id; uint32_t compat_pvr; PPCVirtualHypervisor *vhyp; - struct ICPState *icp; - struct XiveTCTX *tctx; void *machine_data; int32_t node_id; /* NUMA node this CPU belongs to */ PPCHash64Options *hash64_opts; --=20 2.20.1