Commit 761b3337 authored by Matthew Brost's avatar Matthew Brost

drm/xe: Remove exec queue bind.fence_*

struct xe_exec_queue bind.fence_* members are unused. Remove these.
Signed-off-by: default avatarMatthew Brost <matthew.brost@intel.com>
Reviewed-by: default avatarRodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240213043251.3482928-1-matthew.brost@intel.com
parent 9bc36e58
...@@ -94,10 +94,6 @@ static struct xe_exec_queue *__xe_exec_queue_alloc(struct xe_device *xe, ...@@ -94,10 +94,6 @@ static struct xe_exec_queue *__xe_exec_queue_alloc(struct xe_device *xe,
q->parallel.composite_fence_ctx = dma_fence_context_alloc(1); q->parallel.composite_fence_ctx = dma_fence_context_alloc(1);
q->parallel.composite_fence_seqno = XE_FENCE_INITIAL_SEQNO; q->parallel.composite_fence_seqno = XE_FENCE_INITIAL_SEQNO;
} }
if (q->flags & EXEC_QUEUE_FLAG_VM) {
q->bind.fence_ctx = dma_fence_context_alloc(1);
q->bind.fence_seqno = XE_FENCE_INITIAL_SEQNO;
}
return q; return q;
} }
......
...@@ -115,7 +115,6 @@ struct xe_exec_queue { ...@@ -115,7 +115,6 @@ struct xe_exec_queue {
struct list_head link; struct list_head link;
} persistent; } persistent;
union {
/** /**
* @parallel: parallel submission state * @parallel: parallel submission state
*/ */
...@@ -125,16 +124,6 @@ struct xe_exec_queue { ...@@ -125,16 +124,6 @@ struct xe_exec_queue {
/** @parallel.composite_fence_seqno: seqno for composite fence */ /** @parallel.composite_fence_seqno: seqno for composite fence */
u32 composite_fence_seqno; u32 composite_fence_seqno;
} parallel; } parallel;
/**
* @bind: bind submission state
*/
struct {
/** @bind.fence_ctx: context bind fence */
u64 fence_ctx;
/** @bind.fence_seqno: seqno for bind fence */
u32 fence_seqno;
} bind;
};
/** @sched_props: scheduling properties */ /** @sched_props: scheduling properties */
struct { struct {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment