From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mout-p-102.mailbox.org (mout-p-102.mailbox.org [80.241.56.152]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0F2D536BCFA for ; Fri, 27 Feb 2026 09:03:59 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=80.241.56.152 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772183041; cv=none; b=Ci27Vz0j8rzBZmc4ZVZ5Wd1mu/XIOKNQG/fFlK3ULA/1gSri3vjOL5gZhyCVAIT2ZBcFrqy1lHdqm1l4Dh5AlJfhL6GVoZVxM2+uGfYGYb36IWkRUTygQi/Egcl7QqpvpqbOA83Jq8L2b0uVt4+jKBoCmVyplVvdcka04qjQb4A= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772183041; c=relaxed/simple; bh=/NXjcTkuD3aRbR7gfflMrcpfLEtYsWBoih2zwblvwN8=; h=Message-ID:Subject:From:To:Cc:Date:In-Reply-To:References: Content-Type:MIME-Version; b=CKCz7oMoP8OHg4v1DQ0AKRqRPOfKuiOi1WjHrdKuwwOEOubUnSj5a+sfWzovALOyyzz4TGIHd3WWq8/lHbLuwNhTsYuhrywt3YdhDtOKVxmuBta18WJkTVeUy27Uu3gOVbKQLB90fWhAgGwQQrmdsPB/ry/mAsWKBKLxf0G5N5c= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=mailbox.org; spf=pass smtp.mailfrom=mailbox.org; dkim=pass (2048-bit key) header.d=mailbox.org header.i=@mailbox.org header.b=PxrugUa8; arc=none smtp.client-ip=80.241.56.152 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=mailbox.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=mailbox.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=mailbox.org header.i=@mailbox.org header.b="PxrugUa8" 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 Reply-To: phasta@kernel.org 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 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-MBO-RS-META: gi6y8c4ccn9zuma9b5gbwy9o66ycdm77 X-MBO-RS-ID: 1735c179929255b0358 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.