Lines Matching refs:duration
147 unsigned long long duration; in max_spin_store() local
167 err = kstrtoull(buf, 0, &duration); in max_spin_store()
171 if (duration > jiffies_to_nsecs(2)) in max_spin_store()
174 WRITE_ONCE(engine->props.max_busywait_duration_ns, duration); in max_spin_store()
206 unsigned long long duration; in timeslice_store() local
217 err = kstrtoull(buf, 0, &duration); in timeslice_store()
221 if (duration > jiffies_to_msecs(MAX_SCHEDULE_TIMEOUT)) in timeslice_store()
224 WRITE_ONCE(engine->props.timeslice_duration_ms, duration); in timeslice_store()
227 set_timer_ms(&engine->execlists.timer, duration); in timeslice_store()
259 unsigned long long duration; in stop_store() local
271 err = kstrtoull(buf, 0, &duration); in stop_store()
275 if (duration > jiffies_to_msecs(MAX_SCHEDULE_TIMEOUT)) in stop_store()
278 WRITE_ONCE(engine->props.stop_timeout_ms, duration); in stop_store()