Lines Matching refs:mem_alloc_list_head
282 static struct mem_entry *mem_alloc_list_head; variable
501 if (mem_alloc_list_head == NULL) { in mem_list_add_item()
502 mem_alloc_list_head = rte_zmalloc(NULL, in mem_list_add_item()
505 if (mem_alloc_list_head == NULL) { in mem_list_add_item()
510 mem_alloc_list_head->next = NULL; in mem_list_add_item()
511 mem_alloc_list_head->prev = NULL; in mem_list_add_item()
512 mem_alloc_list_tail = mem_alloc_list_head; in mem_list_add_item()
539 if (mem_alloc_list_head == NULL) { in mem_list_find_item()
549 mem_alloc_list_cur = mem_alloc_list_head; in mem_list_find_item()
571 mem_alloc_list_head = mem_alloc_list_cur->next; in mem_list_del_item()
572 if (mem_alloc_list_head != NULL) in mem_list_del_item()
573 mem_alloc_list_head->prev = NULL; in mem_list_del_item()
1201 mem_alloc_list_head = NULL; in cuda_gpu_probe()