From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 19895E77188 for ; Mon, 6 Jan 2025 09:10:20 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 863CB10E5E3; Mon, 6 Jan 2025 09:10:19 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="Zu/fN+p4"; dkim-atps=neutral Received: from nyc.source.kernel.org (nyc.source.kernel.org [147.75.193.91]) by gabe.freedesktop.org (Postfix) with ESMTPS id D088D10E5E3 for ; Mon, 6 Jan 2025 09:10:17 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by nyc.source.kernel.org (Postfix) with ESMTP id 75C32A412C0; Mon, 6 Jan 2025 09:08:27 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B0BFCC4CEDF; Mon, 6 Jan 2025 09:10:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1736154616; bh=fmNIgfuaDg0YQaUxrExgtxA4HCsqQIZwPebzqg0iv5c=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=Zu/fN+p4JrP5WDr5tmoc53Oh2PlHVVeAaaS4XvsyEsbb3hfapAvW/kBwdhsb5+AXQ GiiV3zm5tBdaBwUjuc6SqmWlbpIvEppJvj9Lp6VjPs2pkOCs4xgrie43zSoKFE7zZS Wimsdjfof5bwVbwkx5IV8YimywuCg7j0YfGOzPEGDvzU9qTZlKFS1FVrnnrYtUetDm XJbN1Of01cpUfjBnEjs0ve07Vk+Yr4tzjhY9nVO5wROEt0olcO8wyZ9bHU4YMvOV6i OD8PkJXLbhkf++iQAh8e5faFXA+y21KuKLmER5kPrOSpMUsITFh7iHWGQez05BS+Zt HCpcm1ZYIKnHA== Message-ID: Date: Mon, 06 Jan 2025 09:10:13 +0000 From: "Maxime Ripard" To: "Louis Chauvet" Subject: Re: [PATCH v3 3/3] drm/vkms: Switch to dynamic allocation for CRTC In-Reply-To: <20241230-b4-vkms-allocated-v3-3-5dda4c1bd459@bootlin.com> References: <20241230-b4-vkms-allocated-v3-3-5dda4c1bd459@bootlin.com> Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, thomas.petazzoni@bootlin.com, "David Airlie" , "Haneen Mohammed" , "Maarten Lankhorst" , "Maxime Ripard" , =?utf-8?b?TWHDrXJhIENhbmFs?= , "Melissa Wen" , "Rodrigo Siqueira" , "Simona Vetter" , "Simona Vetter" , "Thomas Zimmermann" Content-Transfer-Encoding: quoted-printable X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Mon, 30 Dec 2024 19:39:46 +0100, Louis Chauvet wrote: > A specific allocation for the CRTC is not strictly necessary at this > point, but in order to implement dynamic configuration of VKMS (configFS), > it will be easier to have one allocation per CRTC. >=20 > Signed-off-by: Louis Chauvet >=20 > [ ... ] Reviewed-by: Maxime Ripard Thanks! Maxime