mirror of
https://github.com/torvalds/linux.git
synced 2026-05-04 06:22:40 -04:00
drm/sched: Store the drm client_id in drm_sched_fence
This will be used in a later commit to trace the drm client_id in some of the gpu_scheduler trace events. This requires changing all the users of drm_sched_job_init to add an extra parameter. The newly added drm_client_id field in the drm_sched_fence is a bit of a duplicate of the owner one. One suggestion I received was to merge those 2 fields - this can't be done right now as amdgpu uses some special values (AMDGPU_FENCE_OWNER_*) that can't really be translated into a client id. Christian is working on getting rid of those; when it's done we should be able to squash owner/drm_client_id together. Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Signed-off-by: Philipp Stanner <phasta@kernel.org> Link: https://lore.kernel.org/r/20250526125505.2360-3-pierre-eric.pelloux-prayer@amd.com
This commit is contained in:
committed by
Philipp Stanner
parent
18c44fb647
commit
2956554823
@@ -117,7 +117,8 @@ drm_mock_sched_job_new(struct kunit *test,
|
||||
ret = drm_sched_job_init(&job->base,
|
||||
&entity->base,
|
||||
1,
|
||||
NULL);
|
||||
NULL,
|
||||
1);
|
||||
KUNIT_ASSERT_EQ(test, ret, 0);
|
||||
|
||||
job->test = test;
|
||||
|
||||
Reference in New Issue
Block a user