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 5793AE909A4 for ; Tue, 17 Feb 2026 14:20:21 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A5CAA10E4DC; Tue, 17 Feb 2026 14:20:20 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="m3gxsYF2"; dkim-atps=neutral Received: from tor.source.kernel.org (tor.source.kernel.org [172.105.4.254]) by gabe.freedesktop.org (Postfix) with ESMTPS id 20D0110E268 for ; Tue, 17 Feb 2026 14:20:19 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by tor.source.kernel.org (Postfix) with ESMTP id 6A1DC60128; Tue, 17 Feb 2026 14:20:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 145EEC4CEF7; Tue, 17 Feb 2026 14:20:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1771338018; bh=j4TftygsN8klkAOw6FOrClS8W5uyTLWHdl5mvNLxV8w=; h=Date:To:From:Subject:Cc:References:In-Reply-To:From; b=m3gxsYF28y5u0KRNY4pC+yGJpbf1wOkmZMyGr0aKEJjr/be6yfMdsFNtLNrpxZIu4 iT3GChKuexoiJzbNv0aYnlazE8xadRs2M3ANndAvoQppdtG8lzoQdkda9Sq5zrDWnr rtBWI3sdWZ8MXYhTpM0dUZXt7OwCinO31TJRDrNntllMy0OL9nLL1j2TPVz5SggP7D CP/Yz0+q3L54uH/Ct6xEuO6a1d+HH3lXFUvPF0fHT2Sud5GMlEjHZ/xtpp6ly/Qa0s Np3jz7lNDG5VhADHS7hStp4qlacb3anJrdLuwUTXR3Ast4rB+4j28nuI+67iVkz++L IlKCdB9g11n6g== Mime-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Tue, 17 Feb 2026 15:20:15 +0100 Message-Id: To: "Philipp Stanner" From: "Danilo Krummrich" Subject: Re: [PATCH] drm/sched: Remove racy hack from drm_sched_fini() Cc: "Matthew Brost" , =?utf-8?q?Christian_K=C3=B6nig?= , , References: <20260108083019.63532-2-phasta@kernel.org> In-Reply-To: <20260108083019.63532-2-phasta@kernel.org> 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 Thu Jan 8, 2026 at 9:30 AM CET, Philipp Stanner wrote: > drm_sched_fini() contained a hack to work around a race in amdgpu. > According to AMD, the hack should not be necessary anymore. In case > there should have been undetected users, > > commit 975ca62a014c ("drm/sched: Add warning for removing hack in drm_sch= ed_fini()") > > had added a warning one release cycle ago. > > Thus, it can be derived that the hack can be savely removed by now. > > Remove the hack. > > Signed-off-by: Philipp Stanner Acked-by: Danilo Krummrich