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 51202C2D0CD for ; Mon, 19 May 2025 07:23:37 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B0F0010E1B6; Mon, 19 May 2025 07:23:36 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="DlMYPq2o"; 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 4D44B10E1B6 for ; Mon, 19 May 2025 07:23:35 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by nyc.source.kernel.org (Postfix) with ESMTP id 0ED92A43611; Mon, 19 May 2025 07:23:31 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 59F95C4CEE4; Mon, 19 May 2025 07:23:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1747639410; bh=SHc0Nb1St8jt+FbVbFJo4ZDsCFKIWSKrtl56Bf8Qa9M=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=DlMYPq2odZFjGkfdqR6pIpKSlqASYxR+dpTCDkIpB1ipKwpjwGwmf03DLkaIqBxFf Qjy56bWZdYOC8nDoMGs+2NKU6Q8E/lfELZOs8/w5cbXx35EZvC3C+0oqdnTcy3Cs/C ef3f34mJxw8U6mHUAR10S6o/MqTzOHmjfcJJbcQvrJb/F/JVOGKSSDDeJmsGXbm3a1 PDCDIy4ph/xidYJe/oxPP5q/Aa8EdzbnKYY1dvmnAKGGzw63CWvjg8iv97n+dpihkh ls6RUctIt/2p1hZPb9FkhE/3946TgPd1JB31/ThM5sonvnKs+oUyfOLq3S0WpnR3JS iO0QqoMaKllvA== Message-ID: <820007abbd94a483350ffe0023b58043@kernel.org> Date: Mon, 19 May 2025 07:23:27 +0000 From: "Maxime Ripard" To: "Cristian Ciocaltea" Subject: Re: [PATCH v4 16/23] drm/tests: hdmi: Switch to drm_atomic_get_new_connector_state() where possible In-Reply-To: <20250425-hdmi-conn-yuv-v4-16-5e55e2aaa3fa@collabora.com> References: <20250425-hdmi-conn-yuv-v4-16-5e55e2aaa3fa@collabora.com> Cc: dri-devel@lists.freedesktop.org, kernel@collabora.com, linux-kernel@vger.kernel.org, "Dave Stevenson" , "David Airlie" , "Dmitry Baryshkov" , "Dmitry Baryshkov" , "Maarten Lankhorst" , "Maxime Ripard" , "Simona Vetter" , "Thomas Zimmermann" Content-Transfer-Encoding: 7bit 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 Fri, 25 Apr 2025 13:27:07 +0300, Cristian Ciocaltea wrote: > Replace the calls to drm_atomic_get_connector_state() with > drm_atomic_get_new_connector_state() for cases which do not require > allocating the connector state, e.g. after drm_atomic_check_only() when > the intent is to only read the new connector state. > > > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime