summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2014-05-22 10:20:33 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2014-05-22 10:22:04 +0100
commit9911f3f0cf202444f1ef2399f5961605880b7360 (patch)
tree2b7db24b930fc0b3240d4204e5df8b5abe8294fb
parenteb566561e79d00c7ac7b596d428fa26f6de1ec5d (diff)
igt/gem_userptr_blits: Fix up last minute API changes
When the patch was merged, the ioctl numbers had to be adjusted to leave no holes. Also there was a final piece of munging of the API to downgrade unsynced userptr for export over dma-buf. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--tests/gem_userptr_blits.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/gem_userptr_blits.c b/tests/gem_userptr_blits.c
index 86c5d666..fcf6fa63 100644
--- a/tests/gem_userptr_blits.c
+++ b/tests/gem_userptr_blits.c
@@ -63,7 +63,7 @@
#define PAGE_SIZE 4096
#endif
-#define LOCAL_I915_GEM_USERPTR 0x34
+#define LOCAL_I915_GEM_USERPTR 0x33
#define LOCAL_IOCTL_I915_GEM_USERPTR DRM_IOWR (DRM_COMMAND_BASE + LOCAL_I915_GEM_USERPTR, struct local_i915_gem_userptr)
struct local_i915_gem_userptr {
uint64_t user_ptr;
@@ -664,8 +664,8 @@ static int test_dmabuf(void)
handle = create_userptr_bo(fd1, sizeof(linear));
ret = export_handle(fd1, handle, &dma_buf_fd);
- if (userptr_flags & LOCAL_I915_USERPTR_UNSYNCHRONIZED) {
- igt_assert(ret == EINVAL);
+ if (userptr_flags & LOCAL_I915_USERPTR_UNSYNCHRONIZED && ret) {
+ igt_assert(ret == EINVAL || ret == ENODEV);
free_userptr_bo(fd1, handle);
return 0;