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 D57AEFD530E for ; Fri, 27 Feb 2026 09:03:55 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 20DAA10EA77; Fri, 27 Feb 2026 09:03:55 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; secure) header.d=mailbox.org header.i=@mailbox.org header.b="PxrugUa8"; dkim-atps=neutral Received: from mout-p-102.mailbox.org (mout-p-102.mailbox.org [80.241.56.152]) by gabe.freedesktop.org (Postfix) with ESMTPS id 693C710EA6C for ; Fri, 27 Feb 2026 09:03:53 +0000 (UTC) Received: from smtp202.mailbox.org (smtp202.mailbox.org [10.196.197.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-102.mailbox.org (Postfix) with ESMTPS id 4fMj6t0sqyz9vL3; Fri, 27 Feb 2026 10:03:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mailbox.org; s=mail20150812; t=1772183030; h=from:from:reply-to:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/NXjcTkuD3aRbR7gfflMrcpfLEtYsWBoih2zwblvwN8=; b=PxrugUa8rAdV5Nx4yO8oy9Fhh7oKpMVEX8d9kesky03rbf4WbhqrLzqnkX8Ui7uNgIBCJC YAJWvK4iCDxUV5F0flGVKKyYSpAhm3eRWLMOdGoMC2GakqGFnRRhDPx6KlFVC+y/w2pb++ Xd7x6X6z6//B+GTClPA3GSsPongzkkSAEcP6nG4HiRmaNIDwiv9v49/v+MEs7b5PC81EZI oMc6YLzPLXHMJCCh9KgXqsQHm7iH6Ta/Ekj5H0L8OM1IsRxD9BEtwtZkCeCF4I/stWX3si /vv+GKtrKnBqDMT0ZnPPT/3Ny/Az6IL0gl8fSUtrNAd2dxwwCAL0BWWQ1g91Wg== Message-ID: <322d889e904b8f8f1cf348ef847cd30c0ff8bbe6.camel@mailbox.org> Subject: Re: [PATCH] drm/sched: Remove racy hack from drm_sched_fini() From: Philipp Stanner To: Danilo Krummrich , Philipp Stanner Cc: Matthew Brost , Christian =?ISO-8859-1?Q?K=F6nig?= , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Date: Fri, 27 Feb 2026 10:03:46 +0100 In-Reply-To: References: <20260108083019.63532-2-phasta@kernel.org> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-MBO-RS-META: gi6y8c4ccn9zuma9b5gbwy9o66ycdm77 X-MBO-RS-ID: 1735c179929255b0358 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: , Reply-To: phasta@kernel.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Tue, 2026-02-17 at 15:20 +0100, Danilo Krummrich wrote: > 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, > >=20 > > commit 975ca62a014c ("drm/sched: Add warning for removing hack in drm_s= ched_fini()") > >=20 > > had added a warning one release cycle ago. > >=20 > > Thus, it can be derived that the hack can be savely removed by now. > >=20 > > Remove the hack. > >=20 > > Signed-off-by: Philipp Stanner >=20 > Acked-by: Danilo Krummrich Pushed to drm-misc-next, thx. P.