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()
171 SCpnt = __queue_remove(queue, l); in queue_remove_exclude()
212 struct list_head *l; in queue_remove_tgtluntag() local
216 list_for_each(l, &queue->head) { in queue_remove_tgtluntag()
217 QE_t *q = list_entry(l, QE_t, list); in queue_remove_tgtluntag()
220 SCpnt = __queue_remove(queue, l); in queue_remove_tgtluntag()
239 struct list_head *l; in queue_remove_all_target() local
242 list_for_each(l, &queue->head) { in queue_remove_all_target()
243 QE_t *q = list_entry(l, QE_t, list); in queue_remove_all_target()
245 __queue_remove(queue, l); in queue_remove_all_target()
262 struct list_head *l; in queue_probetgtlun() local
266 list_for_each(l, &queue->head) { in queue_probetgtlun()
267 QE_t *q = list_entry(l, QE_t, list); in queue_probetgtlun()
288 struct list_head *l; in queue_remove_cmd() local
292 list_for_each(l, &queue->head) { in queue_remove_cmd()
293 QE_t *q = list_entry(l, QE_t, list); in queue_remove_cmd()
295 __queue_remove(queue, l); in queue_remove_cmd()