Lines Matching defs:drm_queue
443 struct drm_queue { struct
444 atomic_t use_count; /**< Outstanding uses (+1) */
445 atomic_t finalization; /**< Finalization in progress */
446 atomic_t block_count; /**< Count of processes waiting */
447 atomic_t block_read; /**< Queue blocked for reads */
448 wait_queue_head_t read_queue; /**< Processes waiting on block_read */
449 atomic_t block_write; /**< Queue blocked for writes */
450 wait_queue_head_t write_queue; /**< Processes waiting on block_write */
451 atomic_t total_queued; /**< Total queued statistic */
452 atomic_t total_flushed; /**< Total flushes statistic */
453 atomic_t total_locks; /**< Total locks statistics */
454 enum drm_ctx_flags flags; /**< Context preserving and 2D-only */
455 struct drm_waitlist waitlist; /**< Pending buffers */
456 wait_queue_head_t flush_queue; /**< Processes waiting until flush */