mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 01:50:10 +01:00
iris: get angry about execbuf failures
want this to be easy to detect for now
This commit is contained in:
parent
a378ee3607
commit
2d578e71d5
1 changed files with 2 additions and 0 deletions
|
|
@ -437,6 +437,8 @@ submit_batch(struct iris_batch *batch, int in_fence_fd, int *out_fence_fd)
|
|||
if (ret != 0) {
|
||||
ret = -errno;
|
||||
DBG("execbuf FAILED: errno = %d\n", -ret);
|
||||
fprintf(stderr, "execbuf FAILED: errno = %d\n", -ret);
|
||||
abort();
|
||||
} else {
|
||||
DBG("execbuf succeeded\n");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue