Lines Matching refs:head
43 struct list_head head;
145 LIST_INITHEAD(&slab->head);
151 LIST_ADD(&slab->head, &mm_bucket_by_order(cache, chunk_order)->free);
185 slab = LIST_ENTRY(struct mm_slab, bucket->used.next, head);
190 slab = LIST_ENTRY(struct mm_slab, bucket->free.next, head);
192 LIST_DEL(&slab->head);
193 LIST_ADD(&slab->head, &bucket->used);
205 LIST_DEL(&slab->head);
206 LIST_ADD(&slab->head, &bucket->full);
225 LIST_DEL(&slab->head);
226 LIST_ADDTAIL(&slab->head, &bucket->free);
229 LIST_DEL(&slab->head);
230 LIST_ADDTAIL(&slab->head, &bucket->used);
267 nouveau_mm_free_slabs(struct list_head *head)
271 LIST_FOR_EACH_ENTRY_SAFE(slab, next, head, head) {
272 LIST_DEL(&slab->head);