Re: [PATCH v2 1/5] drm/sched: Create wrapper to add a syncobj dependency to job

2023-02-24 Thread Maíra Canal
On 2/9/23 09:44, Maíra Canal wrote: In order to add a syncobj's fence as a dependency to a job, it is necessary to call drm_syncobj_find_fence() to find the fence and then add the dependency with drm_sched_job_add_dependency(). So, wrap these steps in one single function, drm_sched_job_add_syncob

[PATCH v2 1/5] drm/sched: Create wrapper to add a syncobj dependency to job

2023-02-09 Thread Maíra Canal
In order to add a syncobj's fence as a dependency to a job, it is necessary to call drm_syncobj_find_fence() to find the fence and then add the dependency with drm_sched_job_add_dependency(). So, wrap these steps in one single function, drm_sched_job_add_syncobj_dependency(). Reviewed-by: Christia