From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 493852C028B; Mon, 16 Mar 2026 17:44:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773683062; cv=none; b=VzBPz35ZCIHlKN2Jpsfxn3rmJ/MnZs0zgXXap9jv02BoblBLyk536IQbO3LmgnKto/so7p1d8FJIwcdv8E1umfLUAQ/4b0MtR2dL9HynLMPzqIOKRTZEjnhcjy+einOQefk4V5AORfKDtko+1HkCqI7/7BhdMlLRtmOJpqSQac8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773683062; c=relaxed/simple; bh=+jLBiK7tB1cVUHnlWTJ1KNaZuNEORY5IEkfLO6HCWxM=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=AgCTlx10scz9HSX3qNzE6pfwudwYMlXQtmJlVefaIfxUfQfhQ2kggNwrlnqM+KTPDaWV16TsM2Cyl8jr8Oj8Jfb2sd83MRuC+xEglGCo9jWJybvODp5xrVzfM3PZb/4y4bLiE2zm5QXstpiHKXWHjLAG042k8AHnmMGDSSb6yAk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id BFE141476; Mon, 16 Mar 2026 10:44:14 -0700 (PDT) Received: from arm.com (usa-sjc-mx-foss1.foss.arm.com [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id D86373F73B; Mon, 16 Mar 2026 10:44:17 -0700 (PDT) Date: Mon, 16 Mar 2026 17:44:15 +0000 From: Catalin Marinas To: Mark Brown Cc: Marc Zyngier , Joey Gouly , Suzuki K Poulose , Will Deacon , Paolo Bonzini , Jonathan Corbet , Shuah Khan , Oliver Upton , Dave Martin , Fuad Tabba , Mark Rutland , Ben Horgan , linux-arm-kernel@lists.infradead.org, kvmarm@lists.linux.dev, linux-kernel@vger.kernel.org, kvm@vger.kernel.org, linux-doc@vger.kernel.org, linux-kselftest@vger.kernel.org, Peter Maydell , Eric Auger Subject: Re: [PATCH v10 04/30] arm64/fpsimd: Determine maximum virtualisable SME vector length Message-ID: References: <20260306-kvm-arm64-sme-v10-0-43f7683a0fb7@kernel.org> <20260306-kvm-arm64-sme-v10-4-43f7683a0fb7@kernel.org> Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260306-kvm-arm64-sme-v10-4-43f7683a0fb7@kernel.org> On Fri, Mar 06, 2026 at 05:00:56PM +0000, Mark Brown wrote: > As with SVE we can only virtualise SME vector lengths that are supported by > all CPUs in the system, implement similar checks to those for SVE. Since > unlike SVE there are no specific vector lengths that are architecturally > required the handling is subtly different, we report a system where this > happens with a maximum vector length of SME_VQ_INVALID. > > Signed-off-by: Mark Brown Reviewed-by: Catalin Marinas