gallium/radeon/winsyses: print CS submission error number

Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
Marek Olšák 2016-07-29 18:31:33 +02:00
parent 0edc2e433e
commit 1c8f17599e
2 changed files with 2 additions and 2 deletions

View File

@ -935,7 +935,7 @@ void amdgpu_cs_submit_ib(void *job, int thread_index)
fprintf(stderr, "amdgpu: Not enough memory for command submission.\n");
else
fprintf(stderr, "amdgpu: The CS has been rejected, "
"see dmesg for more information.\n");
"see dmesg for more information (%i).\n", r);
amdgpu_fence_signalled(cs->fence);
} else {

View File

@ -447,7 +447,7 @@ void radeon_drm_cs_emit_ioctl_oneshot(void *job, int thread_index)
}
} else {
fprintf(stderr, "radeon: The kernel rejected CS, "
"see dmesg for more information.\n");
"see dmesg for more information (%i).\n", r);
}
}