[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[XEN][PATCH 2/3] xen/ppc: irq: drop unreachable pirq callbacks
- To: "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Grygorii Strashko <grygorii_strashko@xxxxxxxx>
- Date: Fri, 1 Aug 2025 10:08:55 +0000
- Accept-language: en-US
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=epam.com; dmarc=pass action=none header.from=epam.com; dkim=pass header.d=epam.com; arc=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=FqUtdEBzonvA7w6wXArFRE0JOCfTp97yglL5Tec73yo=; b=pzeCOhjwSRt3QxFOJ9ElpbKk7NWATQL3tqpaNoD1jtVehazuzeed8xsT252tL2qySQcINX8BeVBAIIv4wF9ZreN8IU7JyxuHE4StKiL5IfIDExXAM+Gfn0yQfnh/O/g/GsP3w7UsvoM5H0hTDjzmhzyG395EcgTZCjorvEYMtUqJFiYeRG55W1y1iwDDVseABuukjV1ACPo4rPnYOJ3hq7K5+IBkf319mYCtIRhm0Kxu0j1SjprVQ7JwZVF0fHYOJHW/8TWQ9ha1z7w3La5e0ytY+xNrbJhmkr8y2k1rQZRkEeQi1Tafff1FF9t9AzaJ49qjlxVpiey3X2TZxqHxiw==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=GnzmmPibU4A3vpohfgHoCmw2j9zLQJ+PvcN1BSvmFhliTY04DWcGpwhfFcy1iuAIolzt9z0R9cFcRNOcFWFL35W64+TXBatuOTUlwba358cXj0WVqDROw7C3ZUuubeAme9cTrf/yhymcaymYme4uV3WFbbJMOkkLpLMJAEAFepZcLCexCIhTKRGzDMc6blhKBnxTyApbpimOSGM2UGXzFdIlthuwxmgxifmfkSEz9V2JZJOHx/1YsNywA2vJ19qcyCnhW7jAoOuWHIJDU1T/FnFyxOAYj/dARKDbo/HeYqnCNfVt9foSBdtOStBfjiUV6UYXrkWuTZq5ZO7munLk5A==
- Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=epam.com;
- Cc: Grygorii Strashko <grygorii_strashko@xxxxxxxx>, Shawn Anastasio <sanastasio@xxxxxxxxxxxxxxxxxxxxx>
- Delivery-date: Fri, 01 Aug 2025 10:09:04 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
- Thread-index: AQHcAsxKTnRncYzOaU+l30HRezRgVQ==
- Thread-topic: [XEN][PATCH 2/3] xen/ppc: irq: drop unreachable pirq callbacks
From: Grygorii Strashko <grygorii_strashko@xxxxxxxx>
Hence all common pIRQ code is under CONFIG_HAS_PIRQ idefs corresponding PPC
arch pIRQ callbacks become unreachable, so drop them.
Signed-off-by: Grygorii Strashko <grygorii_strashko@xxxxxxxx>
---
xen/arch/ppc/stubs.c | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/xen/arch/ppc/stubs.c b/xen/arch/ppc/stubs.c
index 671e71aa0a60..bdaf474c5cc0 100644
--- a/xen/arch/ppc/stubs.c
+++ b/xen/arch/ppc/stubs.c
@@ -103,26 +103,6 @@ void smp_send_call_function_mask(const cpumask_t *mask)
/* irq.c */
-struct pirq *alloc_pirq_struct(struct domain *d)
-{
- BUG_ON("unimplemented");
-}
-
-int pirq_guest_bind(struct vcpu *v, struct pirq *pirq, int will_share)
-{
- BUG_ON("unimplemented");
-}
-
-void pirq_guest_unbind(struct domain *d, struct pirq *pirq)
-{
- BUG_ON("unimplemented");
-}
-
-void pirq_set_affinity(struct domain *d, int pirq, const cpumask_t *mask)
-{
- BUG_ON("unimplemented");
-}
-
void irq_ack_none(struct irq_desc *desc)
{
BUG_ON("unimplemented");
--
2.34.1
|