From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 85CF93164B5 for ; Tue, 17 Feb 2026 14:20:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771338018; cv=none; b=YC161+9hY0TcyLG6HKLFPLvx0ex3lG3HHF7aTesBI36XbaaEjOy8fBw1BaiAkoXiyAkWHEmJm27AACGVjQXibUqquwywv/Hrpe6doVX8nnxudOo7sVtvYXf9MWHhJ/GtOtSOgM0ro6CkVohw/dejnlxgfoypkt+RUTjUkL/BcHM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771338018; c=relaxed/simple; bh=j4TftygsN8klkAOw6FOrClS8W5uyTLWHdl5mvNLxV8w=; h=Mime-Version:Content-Type:Date:Message-Id:To:From:Subject:Cc: References:In-Reply-To; b=Q9zcsUhwT9XvT7/S2+iLltyDJz8rHmZUTbJ5yNX90tq11qx4M7Lxh4j1ZX1B7k0M1gUefyGDC1+rL7VN7LJEp10vnzn1P/2QKwqevuAXzHs9ypSV/QBILnB3BE9YnX7Qqmdhe8acY4JbKS9ReE5myjvZr2cYhRq3P+zX/kTLLB8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=m3gxsYF2; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="m3gxsYF2" 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== Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: 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> 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