drm/msm: Use drm_sched_job_add_syncobj_dependency()
As msm_parse_deps() performs the same steps as drm_sched_job_add_syncobj_dependency(), replace the open-coded implementation in msm in order to simply use the DRM function. Signed-off-by: Maíra Canal <mcanal@igalia.com> Patchwork: https://patchwork.freedesktop.org/patch/524090/ Link: https://lore.kernel.org/r/20230224214133.411966-2-mcanal@igalia.com Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
This commit is contained in:
parent
648cb68309
commit
b92e01b4ea
|
@ -573,7 +573,6 @@ static struct drm_syncobj **msm_parse_deps(struct msm_gem_submit *submit,
|
||||||
|
|
||||||
for (i = 0; i < nr_in_syncobjs; ++i) {
|
for (i = 0; i < nr_in_syncobjs; ++i) {
|
||||||
uint64_t address = in_syncobjs_addr + i * syncobj_stride;
|
uint64_t address = in_syncobjs_addr + i * syncobj_stride;
|
||||||
struct dma_fence *fence;
|
|
||||||
|
|
||||||
if (copy_from_user(&syncobj_desc,
|
if (copy_from_user(&syncobj_desc,
|
||||||
u64_to_user_ptr(address),
|
u64_to_user_ptr(address),
|
||||||
|
@ -593,12 +592,8 @@ static struct drm_syncobj **msm_parse_deps(struct msm_gem_submit *submit,
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = drm_syncobj_find_fence(file, syncobj_desc.handle,
|
ret = drm_sched_job_add_syncobj_dependency(&submit->base, file,
|
||||||
syncobj_desc.point, 0, &fence);
|
syncobj_desc.handle, syncobj_desc.point);
|
||||||
if (ret)
|
|
||||||
break;
|
|
||||||
|
|
||||||
ret = drm_sched_job_add_dependency(&submit->base, fence);
|
|
||||||
if (ret)
|
if (ret)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue