From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 503EA3932C3; Mon, 16 Mar 2026 12:14:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=13.77.154.182 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773663257; cv=none; b=Q6hr5/LWFlQvwkCvsRlMfEbLQ/ZiXGliLAq5C2nvmFyqK6TujU7P9hSyRqpXyyogEUn9Y8pmXXsb87aWysdj0vJiieh8mskeazkSM8j330wvp3CVWJr5gvTnHl50EffZ4oFv/9B2f8VdHGjX1lj0qymvcoly9RHXGIUO1805qF4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773663257; c=relaxed/simple; bh=jJb8h58hnlLUQmUrWN13yqVVn3m8nj+SGowpCoZTXMg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=FnbU1zyA/OFwgDNfy+HAW433p0f/lSW2nheIvD+M7LSmyRsOvtdfMQyH+priyGmmx06tSItUhUoreOmnYg4yJhAtj+WstX135ECJF/mTv+iQ6b1wS98pqWIa82KVYqIY0ZnC5hFJN8YVEy9o8v9FIktjm5T0qZs7suLWpm0npJA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.microsoft.com; spf=pass smtp.mailfrom=linux.microsoft.com; dkim=pass (1024-bit key) header.d=linux.microsoft.com header.i=@linux.microsoft.com header.b=s9CD2tDn; arc=none smtp.client-ip=13.77.154.182 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.microsoft.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.microsoft.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.microsoft.com header.i=@linux.microsoft.com header.b="s9CD2tDn" Received: from CPC-namja-026ON.redmond.corp.microsoft.com (unknown [4.213.232.19]) by linux.microsoft.com (Postfix) with ESMTPSA id EDB4720B6F1B; Mon, 16 Mar 2026 05:14:08 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com EDB4720B6F1B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1773663255; bh=RkE3+qElIZaIEZKSD/Ld3HbKTw73INK8ayuUxF+uJxQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=s9CD2tDnG6tFpkuyB5dr6TborVEmEhSrR6Y8mXyzKLjUKHktvqTTPJaIKQrjL/zc6 oOb2+6CxUKPPPUNQgjiq9fmMtREq1URhAKprDqXBrnsic6rUfo53g99NrAGB5rPrRg mP6kAUCgdZEQxBnaQJvRb7+6G0m2SBMscKd9jixc= From: Naman Jain To: "K . Y . Srinivasan" , Haiyang Zhang , Wei Liu , Dexuan Cui , Long Li , Catalin Marinas , Will Deacon , Thomas Gleixner , Ingo Molnar , Borislav Petkov , Dave Hansen , x86@kernel.org, "H . Peter Anvin" , Arnd Bergmann , Paul Walmsley , Palmer Dabbelt , Albert Ou , Alexandre Ghiti Cc: Marc Zyngier , Timothy Hayes , Lorenzo Pieralisi , mrigendrachaubey , Naman Jain , ssengar@linux.microsoft.com, Michael Kelley , linux-hyperv@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, linux-riscv@lists.infradead.org Subject: [PATCH 11/11] Drivers: hv: Kconfig: Add ARM64 support for MSHV_VTL Date: Mon, 16 Mar 2026 12:12:41 +0000 Message-ID: <20260316121241.910764-12-namjain@linux.microsoft.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260316121241.910764-1-namjain@linux.microsoft.com> References: <20260316121241.910764-1-namjain@linux.microsoft.com> Precedence: bulk X-Mailing-List: linux-hyperv@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Enable ARM64 support in MSHV_VTL Kconfig now that all the necessary support is present. Signed-off-by: Roman Kisel Signed-off-by: Naman Jain --- drivers/hv/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hv/Kconfig b/drivers/hv/Kconfig index 7937ac0cbd0f..393cef272590 100644 --- a/drivers/hv/Kconfig +++ b/drivers/hv/Kconfig @@ -87,7 +87,7 @@ config MSHV_ROOT config MSHV_VTL tristate "Microsoft Hyper-V VTL driver" - depends on X86_64 && HYPERV_VTL_MODE + depends on (X86_64 || ARM64) && HYPERV_VTL_MODE depends on HYPERV_VMBUS # Mapping VTL0 memory to a userspace process in VTL2 is supported in OpenHCL. # VTL2 for OpenHCL makes use of Huge Pages to improve performance on VMs, -- 2.43.0