summaryrefslogtreecommitdiff
path: root/sys/dev/pci/drm/i915_drv.h
diff options
context:
space:
mode:
authorJonathan Gray <jsg@jsg.id.au>2013-03-08 13:55:20 +1100
committerJonathan Gray <jsg@jsg.id.au>2013-03-08 13:55:20 +1100
commitb436809e9a782907db2f1f00b45b4904a676ac10 (patch)
treef3075b44c6bf89f270b3da8173967c8bac1aad75 /sys/dev/pci/drm/i915_drv.h
parent590918f52807f5325366ee632e1742c3e27a76d0 (diff)
remove gpu_write_list
Diffstat (limited to 'sys/dev/pci/drm/i915_drv.h')
-rw-r--r--sys/dev/pci/drm/i915_drv.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/dev/pci/drm/i915_drv.h b/sys/dev/pci/drm/i915_drv.h
index f2092c99b54..7267ac42eb4 100644
--- a/sys/dev/pci/drm/i915_drv.h
+++ b/sys/dev/pci/drm/i915_drv.h
@@ -856,7 +856,6 @@ struct drm_i915_gem_object {
/** This object's place on the active/flushing/inactive lists */
struct list_head ring_list;
struct list_head mm_list;
- struct list_head gpu_write_list;
/* GTT binding. */
bus_dmamap_t dmamap;
bus_dma_segment_t *dma_segs;
@@ -896,12 +895,6 @@ struct drm_i915_gem_object {
unsigned int dirty:1;
/**
- * This is set if the object has been written to since the last
- * GPU flush.
- */
- unsigned int pending_gpu_write:1;
-
- /**
* Advice: are the backing pages purgeable?
*/
unsigned int madv:2;
@@ -1062,7 +1055,6 @@ void i915_gem_object_move_off_active(struct drm_i915_gem_object *);
void i915_gem_object_move_to_inactive(struct drm_i915_gem_object *);
void i915_gem_object_move_to_inactive_locked(struct drm_i915_gem_object *);
int i915_add_request(struct intel_ring_buffer *, struct drm_file *, u32 *);
-void i915_gem_process_flushing_list(struct intel_ring_buffer *, u_int32_t);
int init_pipe_control(struct intel_ring_buffer *);
void cleanup_status_page(struct intel_ring_buffer *);
void i915_gem_init_swizzling(struct drm_device *);