mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-09 07:30:35 +02:00
panfrost: Quiet pandecode error
The smallest job descriptor is smaller than 256, and with the tighter packing, pandecode can sometimes error nowadays. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6440>
This commit is contained in:
parent
a0857e9d9e
commit
d353b15bee
1 changed files with 1 additions and 1 deletions
|
|
@ -2304,7 +2304,7 @@ pandecode_jc(mali_ptr jc_gpu_va, bool bifrost, unsigned gpu_id, bool minimal)
|
|||
h = PANDECODE_PTR(mem, jc_gpu_va, struct mali_job_descriptor_header);
|
||||
|
||||
mali_ptr payload_ptr = jc_gpu_va + sizeof(*h);
|
||||
payload = pandecode_fetch_gpu_mem(mem, payload_ptr, 256);
|
||||
payload = pandecode_fetch_gpu_mem(mem, payload_ptr, 64);
|
||||
|
||||
int job_no = job_descriptor_number++;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue