Searched refs:io7_head (Results 1 – 1 of 1) sorted by relevance
50 static struct io7 *io7_head = NULL;96 return (prev ? prev->next : io7_head); in marvel_next_io7() 104 for (io7 = io7_head; io7 && io7->pe != pe; io7 = io7->next) in marvel_find_io7() 135 if (NULL == io7_head) /* empty list */ in alloc_io7() 136 io7_head = io7; in alloc_io7() 137 else if (io7_head->pe > io7->pe) { /* insert at head */ in alloc_io7() 138 io7->next = io7_head; in alloc_io7() 139 io7_head = io7; in alloc_io7() 141 for (insp = io7_head; insp; insp = insp->next) { in alloc_io7() 159 io7->next = io7_head; in alloc_io7() 48 static struct io7 *io7_head = NULL; global() variable [all...]