summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2013-11-13 09:52:14 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2013-11-13 09:53:03 +0000
commit220a8e8b1425d08af7ac104540be16611279e807 (patch)
treeaedaad2a4908ec2ef3d4eadc79c8f25182ee5905
parent44c585a1d8c3b603a9c79bf7dfecf420575cfb61 (diff)
Bump experimental ioctl command numbers
In the meantime a new ioctl has snuck in. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r--src/sna/kgem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sna/kgem.c b/src/sna/kgem.c
index 7855884f..8775d2b9 100644
--- a/src/sna/kgem.c
+++ b/src/sna/kgem.c
@@ -129,7 +129,7 @@ search_snoop_cache(struct kgem *kgem, unsigned int num_pages, unsigned flags);
#define LOCAL_I915_EXEC_NO_RELOC (1<<11)
#define LOCAL_I915_EXEC_HANDLE_LUT (1<<12)
-#define LOCAL_I915_GEM_CREATE2 0x32
+#define LOCAL_I915_GEM_CREATE2 0x33
#define LOCAL_IOCTL_I915_GEM_CREATE2 DRM_IOWR (DRM_COMMAND_BASE + LOCAL_I915_GEM_CREATE2, struct local_i915_gem_create2)
struct local_i915_gem_create2 {
uint64_t size;
@@ -145,7 +145,7 @@ struct local_i915_gem_create2 {
uint32_t handle;
};
-#define LOCAL_I915_GEM_USERPTR 0x33
+#define LOCAL_I915_GEM_USERPTR 0x34
#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;