mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 01:21:28 +00:00
drm/radeon: don't allow RADEON_GEM_DOMAIN_CPU for command submission
It hangs the hardware. Signed-off-by: Marek Olšák <marek.olsak@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com> Cc: stable@vger.kernel.org
This commit is contained in:
parent
60a445405a
commit
ec65da385d
@ -152,6 +152,12 @@ static int radeon_cs_parser_relocs(struct radeon_cs_parser *p)
|
||||
uint32_t domain = r->write_domain ?
|
||||
r->write_domain : r->read_domains;
|
||||
|
||||
if (domain & RADEON_GEM_DOMAIN_CPU) {
|
||||
DRM_ERROR("RADEON_GEM_DOMAIN_CPU is not valid "
|
||||
"for command submission\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
p->relocs[i].domain = domain;
|
||||
if (domain == RADEON_GEM_DOMAIN_VRAM)
|
||||
domain |= RADEON_GEM_DOMAIN_GTT;
|
||||
|
Loading…
Reference in New Issue
Block a user