diff options
author | Chunming Zhou <david1.zhou@amd.com> | 2018-08-30 09:48:29 +0300 |
---|---|---|
committer | Christian König <easy2remember.chk@googlemail.com> | 2018-09-06 12:09:19 +0300 |
commit | 0a6730ea27b68c7ac4171c29a816c29d26a9637a (patch) | |
tree | 980c0f828eae86675dadbef42ef85c1633927b87 /drivers/gpu/drm/amd | |
parent | e28bd101ae1b0f3f653e160c0339c95da7e0fc1e (diff) | |
download | linux-0a6730ea27b68c7ac4171c29a816c29d26a9637a.tar.xz |
drm: expand drm_syncobj_find_fence to support timeline point v2
we can fetch timeline point fence after expanded.
v2: The parameter fence is the result of the function and should come last.
Signed-off-by: Chunming Zhou <david1.zhou@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Christian König <christian.koenig@amd.com>
Link: https://patchwork.freedesktop.org/patch/246541/
Diffstat (limited to 'drivers/gpu/drm/amd')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c index 502b94fb116a..5db7b1b460da 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c @@ -1102,7 +1102,7 @@ static int amdgpu_syncobj_lookup_and_add_to_sync(struct amdgpu_cs_parser *p, { int r; struct dma_fence *fence; - r = drm_syncobj_find_fence(p->filp, handle, &fence); + r = drm_syncobj_find_fence(p->filp, handle, 0, &fence); if (r) return r; |