From nobody Thu Oct 2 07:45:15 2025 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 E3F972BEFE5 for ; Fri, 19 Sep 2025 06:45:02 +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=1758264303; cv=none; b=RZyIXDDDMasWsJBthTGFh5zjpQ6Rdy6Bsa5qYa0EZ8nnljggvC63LuaHMC4QoKbrkyQ0MXVRgQHsOz8TpvFL3IoWau/sVkwSsUhEE1pHgAS9vCUmiZGfz+WcmtvF33YxyDAZNqAr2DEnzoCH7Q/iIMBiNqinHXsUsdVqYZgS8Ks= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758264303; c=relaxed/simple; bh=KIA8ppq75AqYjHD54M5PYbqoYphNBHtZ2oKI5v22ZqU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=iQQEf2FIiujve+4kSAQc//jImAPsTQ1V3LpjBKprZgYh3ifiiCR3uO/LyXCwq5hOB2RLtUNK63Q12epCkp32jPKEsnxpspKrtwC4JRxfmrQ/CJh0MnNZHqa+5mpbqLMt/qgt61QH4fa0ORImwbeeBLHrtVavGqEYdfn9SzIsMdQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=dyBwHguv; 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="dyBwHguv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1524DC4CEF0; Fri, 19 Sep 2025 06:44:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1758264302; bh=KIA8ppq75AqYjHD54M5PYbqoYphNBHtZ2oKI5v22ZqU=; h=From:To:Cc:Subject:Date:From; b=dyBwHguvoM78TJs5sViPOZnCVV/sDlfpQLmH69bIhmJYgrUl8I3ePjSfRE0WqZnAz lHHsWG2wmj7HyeEfMiV+Vkxmu3WmSpszgR/QQXraK2wbUTnOkPx/5+TOWq88S+JYTV bhs5XyPRVmuYr6pjVyo/PK3Zq/BcKsYw+GCqrqtVaWva5fzjkPdTQ+BLLW/6JkDVt4 7y6hpuRWe370SOwrZEXHrZe9dZZ9rqN6D3OVdUSNyQq6JhmkJLLRThTYtEP3vNCzGp hHhuLUb5aV0OFGFXfMZR5sNU7QuZOnK1A5v4UylVhMTnI/HDtMV8sK8NNxvYcLMXIv bdSvkqQAh6d7Q== From: Philipp Stanner To: Matthew Brost , Danilo Krummrich , Philipp Stanner , =?UTF-8?q?Christian=20K=C3=B6nig?= , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter , Tvrtko Ursulin , =?UTF-8?q?Ma=C3=ADra=20Canal?= , Liao Yuanhong Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: [PATCH] drm/sched/tests: Remove relict of done_list Date: Fri, 19 Sep 2025 08:44:51 +0200 Message-ID: <20250919064450.147176-2-phasta@kernel.org> X-Mailer: git-send-email 2.49.0 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" A rework of the scheduler unit tests removed the done_list. That list is still mentioned in the mock test header. Remove that relict. Fixes: 4576de9b7977 ("drm/sched/tests: Implement cancel_job() callback") Signed-off-by: Philipp Stanner Reviewed-by: Tvrtko Ursulin --- drivers/gpu/drm/scheduler/tests/sched_tests.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/gpu/drm/scheduler/tests/sched_tests.h b/drivers/gpu/dr= m/scheduler/tests/sched_tests.h index 7f31d35780cc..553d45abd057 100644 --- a/drivers/gpu/drm/scheduler/tests/sched_tests.h +++ b/drivers/gpu/drm/scheduler/tests/sched_tests.h @@ -31,9 +31,8 @@ * * @base: DRM scheduler base class * @test: Backpointer to owning the kunit test case - * @lock: Lock to protect the simulated @hw_timeline, @job_list and @done_= list + * @lock: Lock to protect the simulated @hw_timeline and @job_list * @job_list: List of jobs submitted to the mock GPU - * @done_list: List of jobs completed by the mock GPU * @hw_timeline: Simulated hardware timeline has a @context, @next_seqno a= nd * @cur_seqno for implementing a struct dma_fence signaling the * simulated job completion. --=20 2.49.0