diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2013-09-18 08:50:29 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2013-09-18 08:50:29 +0000 |
commit | a43eef20f32974bc853195fcaa46355e7784047e (patch) | |
tree | 894f9ba76818842a553e25dfa41043e06a10b07d /sys/dev/pci/drm/i915/i915_drv.h | |
parent | 794c74f7094ab16ad0f15bfbdca1d69114d162df (diff) |
sync the execbuffer relocation code with linux 3.8.13
with the fastpath and cpu relocs disabled for now.
eb_* functions based on code in FreeBSD.
ok kettenis@
Diffstat (limited to 'sys/dev/pci/drm/i915/i915_drv.h')
-rw-r--r-- | sys/dev/pci/drm/i915/i915_drv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/drm/i915/i915_drv.h b/sys/dev/pci/drm/i915/i915_drv.h index 3b709fe866e..9060a44a716 100644 --- a/sys/dev/pci/drm/i915/i915_drv.h +++ b/sys/dev/pci/drm/i915/i915_drv.h @@ -1,4 +1,4 @@ -/* $OpenBSD: i915_drv.h,v 1.27 2013/08/13 10:23:49 jsg Exp $ */ +/* $OpenBSD: i915_drv.h,v 1.28 2013/09/18 08:50:28 jsg Exp $ */ /* i915_drv.h -- Private header for the I915 driver -*- linux-c -*- */ /* @@ -982,6 +982,7 @@ struct drm_i915_gem_object { /** * Used for performing relocations during execbuffer insertion. */ + LIST_ENTRY(drm_i915_gem_object) exec_node; unsigned long exec_handle; struct drm_i915_gem_exec_object2 *exec_entry; |