Home
last modified time | relevance | path

Searched refs:post_deps (Results 1 – 4 of 4) sorted by relevance

/linux-6.1.9/drivers/gpu/drm/msm/
Dmsm_gem_submit.c621 struct msm_submit_post_dep *post_deps; in msm_parse_post_deps() local
626 post_deps = kmalloc_array(nr_syncobjs, sizeof(*post_deps), in msm_parse_post_deps()
628 if (!post_deps) in msm_parse_post_deps()
641 post_deps[i].point = syncobj_desc.point; in msm_parse_post_deps()
642 post_deps[i].chain = NULL; in msm_parse_post_deps()
656 post_deps[i].chain = dma_fence_chain_alloc(); in msm_parse_post_deps()
657 if (!post_deps[i].chain) { in msm_parse_post_deps()
663 post_deps[i].syncobj = in msm_parse_post_deps()
665 if (!post_deps[i].syncobj) { in msm_parse_post_deps()
673 dma_fence_chain_free(post_deps[j].chain); in msm_parse_post_deps()
[all …]
/linux-6.1.9/drivers/gpu/drm/amd/amdgpu/
Damdgpu_cs.c512 if (p->post_deps) in amdgpu_cs_p2_syncobj_out()
515 p->post_deps = kmalloc_array(num_deps, sizeof(*p->post_deps), in amdgpu_cs_p2_syncobj_out()
519 if (!p->post_deps) in amdgpu_cs_p2_syncobj_out()
524 p->post_deps[i].syncobj = in amdgpu_cs_p2_syncobj_out()
526 if (!p->post_deps[i].syncobj) in amdgpu_cs_p2_syncobj_out()
528 p->post_deps[i].chain = NULL; in amdgpu_cs_p2_syncobj_out()
529 p->post_deps[i].point = 0; in amdgpu_cs_p2_syncobj_out()
546 if (p->post_deps) in amdgpu_cs_p2_syncobj_timeline_signal()
549 p->post_deps = kmalloc_array(num_deps, sizeof(*p->post_deps), in amdgpu_cs_p2_syncobj_timeline_signal()
553 if (!p->post_deps) in amdgpu_cs_p2_syncobj_timeline_signal()
[all …]
Damdgpu_cs.h78 struct amdgpu_cs_post_dep *post_deps; member
/linux-6.1.9/drivers/gpu/drm/v3d/
Dv3d_gem.c589 struct drm_v3d_sem __user *post_deps; in v3d_get_multisync_post_deps() local
602 post_deps = u64_to_user_ptr(handles); in v3d_get_multisync_post_deps()
607 if (copy_from_user(&out, post_deps++, sizeof(out))) { in v3d_get_multisync_post_deps()