Home | History | Annotate | Download | only in radeon

Lines Matching defs:priority

49  * An item with priority "i" is added to bucket[i]. The lists are then
65 struct list_head *item, unsigned priority)
70 * with the same priority, i.e. it must be stable.
72 list_add_tail(item, &b->bucket[min(priority, RADEON_CS_MAX_PRIORITY)]);
112 unsigned priority;
125 * Also, the buffers used for write have a higher priority than
129 priority = (r->flags & RADEON_RELOC_PRIO_MASK) * 2
151 priority = RADEON_CS_MAX_PRIORITY;
195 priority);
224 static int radeon_cs_get_ring(struct radeon_cs_parser *p, u32 ring, s32 priority)
226 p->priority = priority;
237 if (p->priority > 0)
246 if (p->priority > 0)
260 /* TODO: only use the low priority ring for now */
291 s32 priority = 0;
379 priority = (s32)p->chunks[i].kdata[2];
391 if (radeon_cs_get_ring(p, ring, priority))