Lines Matching refs:slob_list
272 struct list_head *slob_list; in slob_alloc() local
277 slob_list = &free_slob_small; in slob_alloc()
279 slob_list = &free_slob_medium; in slob_alloc()
281 slob_list = &free_slob_large; in slob_alloc()
285 list_for_each_entry(sp, slob_list, lru) { in slob_alloc()
307 if (prev != slob_list->prev && in slob_alloc()
308 slob_list->next != prev->next) in slob_alloc()
309 list_move_tail(slob_list, prev->next); in slob_alloc()
327 set_slob_page_free(sp, slob_list); in slob_alloc()
346 struct list_head *slob_list; in slob_free() local
376 slob_list = &free_slob_small; in slob_free()
378 slob_list = &free_slob_medium; in slob_free()
380 slob_list = &free_slob_large; in slob_free()
381 set_slob_page_free(sp, slob_list); in slob_free()