Lines Matching refs:sched_props
79 q->sched_props.timeslice_us = hwe->eclass->sched_props.timeslice_us; in __xe_exec_queue_alloc()
80 q->sched_props.preempt_timeout_us = in __xe_exec_queue_alloc()
81 hwe->eclass->sched_props.preempt_timeout_us; in __xe_exec_queue_alloc()
82 q->sched_props.job_timeout_ms = in __xe_exec_queue_alloc()
83 hwe->eclass->sched_props.job_timeout_ms; in __xe_exec_queue_alloc()
86 q->sched_props.priority = XE_EXEC_QUEUE_PRIORITY_KERNEL; in __xe_exec_queue_alloc()
88 q->sched_props.priority = XE_EXEC_QUEUE_PRIORITY_NORMAL; in __xe_exec_queue_alloc()
329 q->sched_props.priority = value; in exec_queue_set_priority()
349 *min = eclass->sched_props.job_timeout_min; in xe_exec_queue_get_prop_minmax()
350 *max = eclass->sched_props.job_timeout_max; in xe_exec_queue_get_prop_minmax()
353 *min = eclass->sched_props.timeslice_min; in xe_exec_queue_get_prop_minmax()
354 *max = eclass->sched_props.timeslice_max; in xe_exec_queue_get_prop_minmax()
357 *min = eclass->sched_props.preempt_timeout_min; in xe_exec_queue_get_prop_minmax()
358 *max = eclass->sched_props.preempt_timeout_max; in xe_exec_queue_get_prop_minmax()
397 q->sched_props.timeslice_us = value; in exec_queue_set_timeslice()