Lines Matching refs:from
73 static void qlist_move_all(struct qlist_head *from, struct qlist_head *to) in qlist_move_all() argument
75 if (unlikely(qlist_empty(from))) in qlist_move_all()
79 *to = *from; in qlist_move_all()
80 qlist_init(from); in qlist_move_all()
84 to->tail->next = from->head; in qlist_move_all()
85 to->tail = from->tail; in qlist_move_all()
86 to->bytes += from->bytes; in qlist_move_all()
88 qlist_init(from); in qlist_move_all()
264 static void qlist_move_cache(struct qlist_head *from, in qlist_move_cache() argument
270 if (unlikely(qlist_empty(from))) in qlist_move_cache()
273 curr = from->head; in qlist_move_cache()
274 qlist_init(from); in qlist_move_cache()
282 qlist_put(from, curr, obj_cache->size); in qlist_move_cache()