Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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

+1 -2
+1 -2
drivers/gpu/drm/scheduler/tests/sched_tests.h
··· 31 31 * 32 32 * @base: DRM scheduler base class 33 33 * @test: Backpointer to owning the kunit test case 34 - * @lock: Lock to protect the simulated @hw_timeline, @job_list and @done_list 34 + * @lock: Lock to protect the simulated @hw_timeline and @job_list 35 35 * @job_list: List of jobs submitted to the mock GPU 36 - * @done_list: List of jobs completed by the mock GPU 37 36 * @hw_timeline: Simulated hardware timeline has a @context, @next_seqno and 38 37 * @cur_seqno for implementing a struct dma_fence signaling the 39 38 * simulated job completion.