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 624EE1D6DB5; Thu, 23 Apr 2026 12:44:47 +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=1776948288; cv=none; b=SgWkhGTs4tZsAbcVc5Me3K9wKZS4bUaPA6U+BNc1hmcI5+ieBs9nDSYNDZJE0GFgZPDv9r9mJ0mkeZ3kRJLGCAxHpy0gbcnEPZlB0SlN9MNx/h55kF7SgCy+4VLTtzzJ5xStvHO9oFfrqvgoSa/6oz8DFPvKJsBk7nddgwuPLg0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776948288; c=relaxed/simple; bh=UJFdtsv+xUTxCdD902MCvqyrQbINo6D6Gc7EY3d+HRk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Joa8IXeLKJ9I9aR+8LmKzOE3ZhLOp9DkOcPp+TEEOAPyD7nUO68QQQkSmId7BfCbsaMz/jOYoloZA7qjgwb3lL3YTGzF43BqvJnezxF40NOcvKzdroQ2SySmJp4alc2VPuFHQdOezrLQnKYwTGwqkdW62VMyrA0oSzc+Ub16K6Q= 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=TZwi8EF3; 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="TZwi8EF3" Received: from CPC-namja-026ON.redmond.corp.microsoft.com (unknown [4.213.232.18]) by linux.microsoft.com (Postfix) with ESMTPSA id 070C020B7185; Thu, 23 Apr 2026 05:44:29 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 070C020B7185 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1776948277; bh=R8uasiKJJqB0UypVXrQ/4MfR+9wKG2jPGAjkmO/egns=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=TZwi8EF3KFtKojnKql1YiP0AxnEytUmxPRo3tGXKd7KO+PMWGFiqKd6B2H0MhaQYM YGXvBpEzByzP3E7BIOFqlkvqdMymumuRVtYgejafE2X8vrjrWmk57c9IhZ4qd5vNc+ GpA+cyWtUSQ/hPB3EXOg0C2B5OBUflbRhUenyRL4= 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 , Michael Kelley Cc: Marc Zyngier , Timothy Hayes , Lorenzo Pieralisi , Sascha Bischoff , mrigendrachaubey , Naman Jain , 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, vdso@mailbox.org, ssengar@linux.microsoft.com Subject: [PATCH v2 15/15] Drivers: hv: Add ARM64 support for MSHV_VTL in Kconfig Date: Thu, 23 Apr 2026 12:42:05 +0000 Message-ID: <20260423124206.2410879-16-namjain@linux.microsoft.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260423124206.2410879-1-namjain@linux.microsoft.com> References: <20260423124206.2410879-1-namjain@linux.microsoft.com> Precedence: bulk X-Mailing-List: linux-arch@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 Reviewed-by: Michael Kelley Reviewed-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 115821cc535c..0bec3bc81a1a 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