Lines Matching defs:entries
102 * RESERVE entries PEEK in the ring for entries
104 * SUBMIT entries RELEASE entries
106 * The producer reserves one or more entries in the ring. It can then
107 * fill in these entries and finally submit them so that they can be
111 * any new entries. If so, the consumer can then read these entries
113 * so that the producer can use these slots to fill in new entries.
269 /* Release valid plus any invalid entries */
295 u32 entries = q->cached_prod - q->cached_cons;
297 if (entries >= max)
301 entries = q->cached_prod - q->cached_cons;
303 return entries >= max ? max : entries;
328 * Reflect this to global state when we get new entries from the ring in