Lines Matching refs:bump
110 /* Convert an allocation failure to a priority bump */
255 * Recursively bump all dependent priorities to match the new request.
297 * If we didn't need to bump any existing priorities, and we haven't
366 static void __bump_priority(struct i915_sched_node *node, unsigned int bump)
370 if (attr.priority & bump)
373 attr.priority |= bump;
377 void i915_schedule_bump_priority(struct i915_request *rq, unsigned int bump)
381 GEM_BUG_ON(bump & ~I915_PRIORITY_MASK);
382 if (READ_ONCE(rq->sched.attr.priority) & bump)
386 __bump_priority(&rq->sched, bump);