diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2014-07-23 11:26:37 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-08-01 16:43:27 -0400 |
commit | 344f4b0f4c14a12206b05aa033f3174cefbd282f (patch) | |
tree | 55b790361eceb61d50f78cc4dd1f55232508e8a4 /include/drm | |
parent | b008c0fc95140ca7aad65861a77f0338ce31e8b5 (diff) |
drm: drop unused "struct drm_queue"
This object is unused, drop it.
Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/drmP.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h index 335b7b8f5e7d..d3d9be6b83ef 100644 --- a/include/drm/drmP.h +++ b/include/drm/drmP.h | |||
@@ -430,23 +430,6 @@ struct drm_file { | |||
430 | struct drm_prime_file_private prime; | 430 | struct drm_prime_file_private prime; |
431 | }; | 431 | }; |
432 | 432 | ||
433 | /** Wait queue */ | ||
434 | struct drm_queue { | ||
435 | atomic_t use_count; /**< Outstanding uses (+1) */ | ||
436 | atomic_t finalization; /**< Finalization in progress */ | ||
437 | atomic_t block_count; /**< Count of processes waiting */ | ||
438 | atomic_t block_read; /**< Queue blocked for reads */ | ||
439 | wait_queue_head_t read_queue; /**< Processes waiting on block_read */ | ||
440 | atomic_t block_write; /**< Queue blocked for writes */ | ||
441 | wait_queue_head_t write_queue; /**< Processes waiting on block_write */ | ||
442 | atomic_t total_queued; /**< Total queued statistic */ | ||
443 | atomic_t total_flushed; /**< Total flushes statistic */ | ||
444 | atomic_t total_locks; /**< Total locks statistics */ | ||
445 | enum drm_ctx_flags flags; /**< Context preserving and 2D-only */ | ||
446 | struct drm_waitlist waitlist; /**< Pending buffers */ | ||
447 | wait_queue_head_t flush_queue; /**< Processes waiting until flush */ | ||
448 | }; | ||
449 | |||
450 | /** | 433 | /** |
451 | * Lock data. | 434 | * Lock data. |
452 | */ | 435 | */ |