diff options
| author | Philipp Stanner <phasta@kernel.org> | 2025-09-19 08:44:51 +0200 |
|---|---|---|
| committer | Philipp Stanner <phasta@kernel.org> | 2025-09-19 14:10:34 +0200 |
| commit | cb9a645c8f48dc6096e72ef3d2f2b67ca25d3434 (patch) | |
| tree | cdc9b740e266e060e03d417b60d10866279b321e | |
| parent | 1a93d70801421ca506807ced45566490976d532a (diff) | |
drm/sched/tests: Remove relict of done_list
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")
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@igalia.com>
Signed-off-by: Philipp Stanner <phasta@kernel.org>
Link: https://lore.kernel.org/r/20250919064450.147176-2-phasta@kernel.org
| -rw-r--r-- | drivers/gpu/drm/scheduler/tests/sched_tests.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/scheduler/tests/sched_tests.h b/drivers/gpu/drm/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 and * @cur_seqno for implementing a struct dma_fence signaling the * simulated job completion. |