[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 3/6] arm/mpu: Move domain-page.c to arm32 specific dir
- To: <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Ayan Kumar Halder <ayan.kumar.halder@xxxxxxx>
- Date: Wed, 11 Jun 2025 15:35:41 +0100
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass (sender ip is 165.204.84.17) smtp.rcpttodomain=lists.xenproject.org smtp.mailfrom=amd.com; dmarc=pass (p=quarantine sp=quarantine pct=100) action=none header.from=amd.com; dkim=none (message not signed); arc=none (0)
- 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=x/H9MESwJREpyi29D9fh/4pN64Tv8g3m4E/vnLHEsHQ=; b=edegU2FoHfR5WYz0h2PQ79Qrg/I9QJw98peM3VKW4wvbOgqZYkHkvCR820kJUFTpRlo0AS2nZjV5bA9siaNb0IasxsfSUGCtLW7N4VV/CGMStczwSsYRLmO2ZWGes8O9TOrHDFU1qpciVWt1af3jpMojvF1CGlBH/zjxjggEWqlTJunniUjVAQjZHPNF/4sQBcT4SSBeCGD4WD92NkqLNzgQDAmXAEFoixd3eRIKWeMdtqWg0mAhJlwCK0UTf37/JN5QDqj40EQ2TwMqkTzP818NKcq6ngaZS7u6VHGwfGdnL4PBPKTR0ZJBGHwVTWHoJFcCfSwdhaRMvU6l03XcGw==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=d9vHTyGKFQ/ndJzA76oLJSGsAugqh0G20DptYAQwivCAM9NddeM2EzKZhQnLWLOVG5TpjE0SVzH/SFLvuhsmaC6u5Isg3Qd6IuzeRxFNOgvYcHUpLARBKHZuomD27lSMwzv7Dae53l83lo0Ta8ZyYuEjCmReH/VrWPoU6gOMNZrQuPCM7EABLXMgWJrfxtN8E7c8+ngb+N/4AVAHUZkvqigsT9bcWqaZpxe6c6z+VCW/X6IcNjcMqXkA056dap+Fkf21+/KY+D5Pk8/NAPbOPv54Rvx8gbpdKKR/bLKAF7v0lb1R5NG2T5Ns5pZaLxRwaxDARqfYn1JPM9OqoTJglw==
- Cc: Ayan Kumar Halder <ayan.kumar.halder@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Bertrand Marquis <bertrand.marquis@xxxxxxx>, Michal Orzel <michal.orzel@xxxxxxx>, "Volodymyr Babchuk" <Volodymyr_Babchuk@xxxxxxxx>
- Delivery-date: Wed, 11 Jun 2025 14:36:51 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
Create xen/arch/arm/mpu/arm32 to hold arm32 specific bits.
Signed-off-by: Ayan Kumar Halder <ayan.kumar.halder@xxxxxxx>
---
Changes from :-
v1..v2 - New patch in v3.
xen/arch/arm/mpu/Makefile | 2 +-
xen/arch/arm/mpu/arm32/Makefile | 1 +
xen/arch/arm/mpu/{ => arm32}/domain-page.c | 0
3 files changed, 2 insertions(+), 1 deletion(-)
create mode 100644 xen/arch/arm/mpu/arm32/Makefile
rename xen/arch/arm/mpu/{ => arm32}/domain-page.c (100%)
diff --git a/xen/arch/arm/mpu/Makefile b/xen/arch/arm/mpu/Makefile
index 808e3e2cb3..9359d79332 100644
--- a/xen/arch/arm/mpu/Makefile
+++ b/xen/arch/arm/mpu/Makefile
@@ -1,4 +1,4 @@
-obj-$(CONFIG_ARM_32) += domain-page.o
+obj-$(CONFIG_ARM_32) += arm32/
obj-y += mm.o
obj-y += p2m.o
obj-y += setup.init.o
diff --git a/xen/arch/arm/mpu/arm32/Makefile b/xen/arch/arm/mpu/arm32/Makefile
new file mode 100644
index 0000000000..e15ce2f7be
--- /dev/null
+++ b/xen/arch/arm/mpu/arm32/Makefile
@@ -0,0 +1 @@
+obj-y += domain-page.o
diff --git a/xen/arch/arm/mpu/domain-page.c
b/xen/arch/arm/mpu/arm32/domain-page.c
similarity index 100%
rename from xen/arch/arm/mpu/domain-page.c
rename to xen/arch/arm/mpu/arm32/domain-page.c
--
2.25.1
|