diff options
| author | Chris Wilson <chris@chris-wilson.co.uk> | 2015-04-03 09:25:02 +0100 |
|---|---|---|
| committer | Chris Wilson <chris@chris-wilson.co.uk> | 2015-04-03 09:25:42 +0100 |
| commit | 43a1f64e7222e9b5a8d7cb2b887002a8b539452e (patch) | |
| tree | e98062f04c377daa789839ae7d8248dd48542974 | |
| parent | 71de427b53582348f96974920dd40d4b4d3163a0 (diff) | |
igt/gem_cpu_reloc: Pretty print execbuf failures
References: https://bugs.freedesktop.org/show_bug.cgi?id=85672
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
| -rw-r--r-- | lib/ioctl_wrappers.c | 8 | ||||
| -rw-r--r-- | tests/gem_cpu_reloc.c | 4 |
2 files changed, 5 insertions, 7 deletions
diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c index ff78ef13..dec45f11 100644 --- a/lib/ioctl_wrappers.c +++ b/lib/ioctl_wrappers.c @@ -429,12 +429,10 @@ uint32_t gem_create(int fd, int size) */ void gem_execbuf(int fd, struct drm_i915_gem_execbuffer2 *execbuf) { - int ret; + int result; - ret = drmIoctl(fd, - DRM_IOCTL_I915_GEM_EXECBUFFER2, - execbuf); - igt_assert(ret == 0); + result = drmIoctl(fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, execbuf); + igt_assert(result == 0); errno = 0; } diff --git a/tests/gem_cpu_reloc.c b/tests/gem_cpu_reloc.c index c67907ad..058089cc 100644 --- a/tests/gem_cpu_reloc.c +++ b/tests/gem_cpu_reloc.c @@ -103,7 +103,7 @@ static void copy(int fd, uint32_t batch, uint32_t src, uint32_t dst) execbuf.batch_len = 4096; execbuf.flags = use_blt; - do_or_die(drmIoctl(fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, &execbuf)); + gem_execbuf(fd, &execbuf); } static void exec(int fd, uint32_t handle) @@ -119,7 +119,7 @@ static void exec(int fd, uint32_t handle) execbuf.buffer_count = 1; execbuf.batch_len = 4096; - do_or_die(drmIoctl(fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, &execbuf)); + gem_execbuf(fd, &execbuf); } uint32_t gen6_batch[] = { |
