Lines Matching refs:l
109 struct list_head *l; in __queue_add() local
117 l = queue->free.next; in __queue_add()
118 list_del(l); in __queue_add()
120 q = list_entry(l, QE_t, list); in __queue_add()
127 list_add(l, &queue->head); in __queue_add()
129 list_add_tail(l, &queue->head); in __queue_add()
164 struct list_head *l; in queue_remove_exclude() local
168 list_for_each(l, &queue->head) { in queue_remove_exclude()
169 QE_t *q = list_entry(l, QE_t, list); in queue_remove_exclude()
172 SCpnt = __queue_remove(queue, l); in queue_remove_exclude()
213 struct list_head *l; in queue_remove_tgtluntag() local
217 list_for_each(l, &queue->head) { in queue_remove_tgtluntag()
218 QE_t *q = list_entry(l, QE_t, list); in queue_remove_tgtluntag()
221 SCpnt = __queue_remove(queue, l); in queue_remove_tgtluntag()
240 struct list_head *l; in queue_remove_all_target() local
243 list_for_each(l, &queue->head) { in queue_remove_all_target()
244 QE_t *q = list_entry(l, QE_t, list); in queue_remove_all_target()
246 __queue_remove(queue, l); in queue_remove_all_target()
263 struct list_head *l; in queue_probetgtlun() local
267 list_for_each(l, &queue->head) { in queue_probetgtlun()
268 QE_t *q = list_entry(l, QE_t, list); in queue_probetgtlun()
289 struct list_head *l; in queue_remove_cmd() local
293 list_for_each(l, &queue->head) { in queue_remove_cmd()
294 QE_t *q = list_entry(l, QE_t, list); in queue_remove_cmd()
296 __queue_remove(queue, l); in queue_remove_cmd()