Commit 298593b6 authored by Christian König's avatar Christian König Committed by Alex Deucher

drm/radeon: allow concurrent buffer reads

Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 57d20a43
...@@ -183,7 +183,7 @@ static int radeon_cs_parser_relocs(struct radeon_cs_parser *p) ...@@ -183,7 +183,7 @@ static int radeon_cs_parser_relocs(struct radeon_cs_parser *p)
} }
p->relocs[i].tv.bo = &p->relocs[i].robj->tbo; p->relocs[i].tv.bo = &p->relocs[i].robj->tbo;
p->relocs[i].tv.shared = false; p->relocs[i].tv.shared = !r->write_domain;
p->relocs[i].handle = r->handle; p->relocs[i].handle = r->handle;
radeon_cs_buckets_add(&buckets, &p->relocs[i].tv.head, radeon_cs_buckets_add(&buckets, &p->relocs[i].tv.head,
...@@ -260,7 +260,8 @@ static void radeon_cs_sync_rings(struct radeon_cs_parser *p) ...@@ -260,7 +260,8 @@ static void radeon_cs_sync_rings(struct radeon_cs_parser *p)
continue; continue;
resv = p->relocs[i].robj->tbo.resv; resv = p->relocs[i].robj->tbo.resv;
radeon_semaphore_sync_resv(p->ib.semaphore, resv, false); radeon_semaphore_sync_resv(p->ib.semaphore, resv,
p->relocs[i].tv.shared);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment