Lines Matching defs:free
29 struct list_head free;
50 int free;
59 if (slab->free == 0)
67 slab->free--;
80 slab->free++;
81 assert(slab->free <= slab->count);
153 slab->count = slab->free = size >> chunk_order;
156 list_add(&slab->head, &bucket->free);
197 if (list_is_empty(&bucket->free)) {
200 slab = list_entry(bucket->free.next, struct mm_slab, head);
210 if (slab->free == 0) {
231 if (slab->free == slab->count) {
233 list_addtail(&slab->head, &bucket->free);
235 if (slab->free == 1) {
266 list_inithead(&cache->bucket[i].free);
301 nouveau_mm_free_slabs(&cache->bucket[i].free);