From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 33DF83DA5A8 for ; Mon, 29 Jun 2026 08:36:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782722202; cv=none; b=cSaNfBtmC39Rhy3IHJwgbW2IfrTKvtBPqbw/0uPffkzDZzs4DVORx8yFxDsBHMg6MGeifsCjSVM/XZdF1hxmyZpPltQwRSHU5ugwrt5ubCo9wyR9mwlUm3kgwGVLpN5uB6pf4jRaH715WKZFuF3bbUq+6B9Ga6jZT+b9z6JVbHw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782722202; c=relaxed/simple; bh=+1GkC66vM+/FgSwwlYKnDrMNv/ERl29Jfy4ujWW/V20=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=JfGlBQdga/LMj1rLIumS1hrw98qlt01N9CuDqUg+wdkqJ3vfvgDhx+fqcPv2OeGTg34N+bh/BTd7H7usEhWDfliImhHAZAu+XmKFbhPH7kBh5SlRtGceLimqZBbSvP6WA865qvdBYAO05vXOJ1MKccs4bMSCqp8Txc1uTVHmcSw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=FHe8fJqD; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="FHe8fJqD" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BC21B1F000E9; Mon, 29 Jun 2026 08:36:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1782722199; bh=FqhdTVMcMiRVErlXsbNjOwNML0uoWB/4mhp8XjRjDAg=; h=From:To:Cc:Subject:Date; b=FHe8fJqDoK5RU3EqLvJSvfgv05CJTRJPb8iN6CtrZX68HpAB0moktMjYDF+b6gRpf x9ZB7sYsdvJmtKB2ZQixE37UvQpIh9inbqmitNobjDRQAsyVtxz9FczASVrfzIfYUD GJb1d8RUR0sEXsF6fM8MbCcBOvxo+eRH8Hiz/Tohmxsf2eBcl2Xi3fwpXJkYh31W8Q IAjViERH3vm1UlmZOYIaVAcITz0k4AUjOD540xs7lGNhiT+0i60PK2S44q8mH+4ADW Gkx6vznMiMAk3CBFhKicfJRc8RZQhndv2aBqDxcPUVrQxwhbxXbuV+fpEPN6CNbDk6 9zFsd5bVfAMxQ== From: Philipp Stanner To: atthew Brost , Danilo Krummrich , Philipp Stanner , =?UTF-8?q?Christian=20K=C3=B6nig?= , David Airlie , Simona Vetter Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: [PATCH] drm/sched: Remove relic from entity docu Date: Mon, 29 Jun 2026 10:36:32 +0200 Message-ID: <20260629083631.2547199-2-phasta@kernel.org> X-Mailer: git-send-email 2.54.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit commit 4827d6d83f07 ("drm/sched: Remove racy hack from drm_sched_fini()") removed the necessity to mark an entity as stopped in drm_sched_fini(). The documentation, however, still details that. Update sched_entity's documentation. Signed-off-by: Philipp Stanner --- include/drm/gpu_scheduler.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h index d61c19e78182..363d13fc929f 100644 --- a/include/drm/gpu_scheduler.h +++ b/include/drm/gpu_scheduler.h @@ -217,8 +217,7 @@ struct drm_sched_entity { * @stopped: * * Marks the enity as removed from rq and destined for - * termination. This is set by calling drm_sched_entity_flush() and by - * drm_sched_fini(). + * termination. This is set by calling drm_sched_entity_flush(). */ bool stopped; base-commit: 6648301c5bb2ef23f0fb15bcb01d21ff66f36799 -- 2.54.0