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 EB4A5CE79AD for ; Wed, 20 Sep 2023 06:29:51 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 37AB410E439; Wed, 20 Sep 2023 06:29:51 +0000 (UTC) Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by gabe.freedesktop.org (Postfix) with ESMTPS id E54B810E439 for ; Wed, 20 Sep 2023 06:29:48 +0000 (UTC) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 70E0BB81ACE; Wed, 20 Sep 2023 06:29:47 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 79E88C433C8; Wed, 20 Sep 2023 06:29:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1695191386; bh=2wuCQSkylz9QSMdbFh7QrwaeAka4CUawgsgVJN9yMuo=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=pWleZaUv0HwBbTmDCrmPy2HWqvGtedgCEo1fr6WPp6t5fz3l8y5PkqIKzQ30qTUAk 1wXCVwQvGZW4LTK8D1v8p2DNIzw374U6ODp1dWWMvYR720WpRIeG7/fcwhlpiR1D4f brgFzHWoWj5clrFFaW9gskr0rqNlnf0I2L/QNPL3jSuR78uwLE4J43Rglgg0Inh6oO HApOPNA8UlyhDelA+T5w+UWDfjx9Ms0vZ4Pv6B6c2j/Sr6f8HVB2h6sEYMQN4cL0Tc opVOri2hc66XoGVkOTflnubb3ypGFr34DTjSSZ718f7UNlT8nGa9nKnB+/qyL8p0lF EedpViyWR6Vhg== Message-ID: Date: Wed, 20 Sep 2023 06:29:42 +0000 From: "Maxime Ripard" To: "Arthur Grillo" Subject: Re: [PATCH 1/3] drm/tests: Fix kunit_release_action ctx argument In-Reply-To: <20230920-kunit-kasan-fixes-v1-1-1a0fc261832d@riseup.net> References: <20230920-kunit-kasan-fixes-v1-1-1a0fc261832d@riseup.net> 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: , Cc: David Gow , Brendan Higgins , tales.aparecida@gmail.com, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Javier Martinez Canillas , mairacanal@riseup.net, Maxime Ripard , andrealmeid@riseup.net, kunit-dev@googlegroups.com Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Wed, 20 Sep 2023 03:11:36 -0300, Arthur Grillo wrote: > The kunit_action_platform_driver_unregister is added with > &fake_platform_driver as ctx, but the kunit_release_action is called > pdev as ctx. Fix that by replacing it with &fake_platform_driver. > > Fixes: 4f2b0b583baa ("drm/tests: helpers: Switch to kunit actions") > > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime