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 87007C3271E for ; Mon, 8 Jul 2024 11:29:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 0C9A110E1C0; Mon, 8 Jul 2024 11:29:38 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="AQ3P9aJ3"; dkim-atps=neutral Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by gabe.freedesktop.org (Postfix) with ESMTPS id 275F410E1C0 for ; Mon, 8 Jul 2024 11:29:37 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sin.source.kernel.org (Postfix) with ESMTP id 49EBECE09AF; Mon, 8 Jul 2024 11:29:35 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 48F01C4AF0C; Mon, 8 Jul 2024 11:29:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1720438174; bh=GkCDMScZ6xpPh//+28LseBKWHp7NenvPRkRlPOyiXaY=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=AQ3P9aJ3/nsJP/gxsJdYkabVnOJqkLRhAA21oT31xuTKC/ofpfe99ZIb9HYUbCO0C oUaKDVUvsUm9c/LBO03mzxdCaxSyA4Mej1R0dHUc9e7bffP8l2c89X+CbQRCnKus61 8acdxZsjHz424SY6QDNR1+CcxyiUZRyifShwhwg7kMlrTXGPxTpvE25kMxl0PkRWdm gtI/Pp42ApdL6GCZoD4FqzFLHv6EfBygowOf+CbwaHiw4KfYhqx/yii+aj8rkyWzAT H6v7RAAqIC1yIErVBEX/NTnIH09fv61SCETr86YpjTOLc+5kuoXdLZXPrXt842YocM RlqixABE/x1jA== Message-ID: Date: Mon, 08 Jul 2024 11:29:32 +0000 From: "Maxime Ripard" To: "Carlos Eduardo Gallo Filho" Subject: Re: [PATCH v3 7/9] drm/tests: Add test for drm_framebuffer_lookup() In-Reply-To: <20240703172228.11166-8-gcarlos@disroot.org> References: <20240703172228.11166-8-gcarlos@disroot.org> Cc: dri-devel@lists.freedesktop.org, =?utf-8?b?QW5kcsOpIEFsbWVpZGE=?= , "Arthur Grillo" , "Daniel Vetter" , "David Airlie" , "Maarten Lankhorst" , "Maxime Ripard" , =?utf-8?b?TWHDrXJhIENhbmFs?= , "Tales Lelo da Aparecida" , "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 Wed, 3 Jul 2024 14:22:26 -0300, Carlos Eduardo Gallo Filho wrote: > Add two KUnit test cases for the drm_framebuffer_lookup function, one for > the base case, that tests if the lookup finds the correct framebuffer obj= ect > and another that tests the lookup for an inexistent framebuffer. >=20 > Signed-off-by: Carlos Eduardo Gallo Filho >=20 > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime