[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v1 0/4] Implement CPU hotplug on Arm
- To: Mykyta Poturai <Mykyta_Poturai@xxxxxxxx>, "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Grygorii Strashko <grygorii_strashko@xxxxxxxx>
- Date: Tue, 23 Sep 2025 19:09:11 +0300
- 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=RgYbIqmPzaadCHsG1AUdsgMu2bZQyrWqSA+X/MCcE44=; b=S6qJ+0Pgv8OI0TX9NTaH7/0/NT+hiEX+9ITxm2TVvi1PHDQrjXuyx4Wf39njhagnEeYJyCwCVV4PWunUgN1vAG7jPwQVXLKr5WutIiYeKQ1T7sMuNB8AcyNbWK/aMpM3ieoJYlo8TuiS15PzJwJd4t5pg2nFP9Ncbpf3sW9UkLPp181pcwHPL9Z99EyS8zyzU9LZEIDyzWTv9F1RDugM2pzv7tIZvt+JbJTvQ8M3NVGc60Xy9Cfyx9cMOvwqt1UeszqPlSm3eKZ3+eHYyj+qHssqsm4FHMpTgDtu6zsYWlhswphnr7k6n89LbAh0Re6Jq3W62KR/mjlZZWE3nVmkJg==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=erCHRTdJo9SV9hmG+pMBzAHKLO/9qdYHa0F9L+xx6KgcklUPLPQEdwIHhkVCHbHbWHEIK9yB0B/8bBIg/yuaoU2PT0bykuQAYOwVDH8z7puKkwwBsYlA8kes4+upc/4xf1rddg6u7KOzLA+msJwAMJJDMD2pyt+EoYhkyatHg7Tewy0volnmHsvknBF5GA3ygzdu+8+Igdsg0Tpn8z5kaI9ByWQg1e7gxP/h6p7KYn9GF0DCqq13/vhoCPgyc1vIzy8OIboNbhIJB38K6FMYD5RALyxx/82Ix/BP/0DaMPEDLWajfBK21iGL4NrCLgz/fBigQv14M5FJnJAOqPjDdw==
- Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=epam.com;
- Cc: Stefano Stabellini <sstabellini@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Bertrand Marquis <bertrand.marquis@xxxxxxx>, Michal Orzel <michal.orzel@xxxxxxx>, Volodymyr Babchuk <Volodymyr_Babchuk@xxxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Anthony PERARD <anthony.perard@xxxxxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>, Juergen Gross <jgross@xxxxxxxx>
- Delivery-date: Tue, 23 Sep 2025 16:09:24 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
Hi Mykyta,
Thank a lot for your patches.
On 18.09.25 15:16, Mykyta Poturai wrote:
This series implements support for CPU hotplug/unplug on Arm. To achieve this,
several things need to be done:
1. XEN_SYSCTL_CPU_HOTPLUG_* calls implemented.
2. timer and GIC maintenance interrupts switched to static irqactions to remove
the need for freeing them during release_irq.
3. Enabled the build of xen-hptool on Arm.
Tested on QEMU.
Mykyta Poturai (4):
arm/time: Use static irqaction
arm/gic: Use static irqaction
arm/sysctl: Implement cpu hotplug ops
tools: Allow building xen-hptool without CONFIG_MIGRATE
config/arm64.mk | 1 +
config/x86_32.mk | 1 +
config/x86_64.mk | 1 +
tools/libs/guest/Makefile.common | 4 +-
tools/misc/Makefile | 2 +-
xen/arch/arm/gic.c | 10 ++++-
xen/arch/arm/sysctl.c | 67 ++++++++++++++++++++++++++++++++
xen/arch/arm/time.c | 20 ++++++++--
8 files changed, 98 insertions(+), 8 deletions(-)
Hence you introducing new feature for ARM I'd very much appreciated if you
add corresponding documentation under docs/hypervisor-guide/arm/.
--
Best regards,
-grygorii
|