Home | History | Annotate | Download | only in linux

Lines Matching refs:queue

409  *	skb_queue_empty - check if a queue is empty
410 * @list: queue head
412 * Returns true if the queue is empty, false otherwise.
561 * the appropriate locks or have a private queue to do this.
582 * the appropriate locks or have a private queue to do this.
597 * skb_queue_len - get queue length
600 * Return the length of an &sk_buff queue.
609 * this is needed for now since a whole lot of users of the skb-queue
630 * __skb_queue_after - queue a buffer at the list head
633 * @newsk: buffer to queue
635 * Queue a buffer int the middle of a list. This function takes no locks
654 * __skb_queue_head - queue a buffer at the list head
656 * @newsk: buffer to queue
658 * Queue a buffer at the start of a list. This function takes no locks
671 * __skb_queue_tail - queue a buffer at the list tail
673 * @newsk: buffer to queue
675 * Queue a buffer at the end of a list. This function takes no locks
696 * __skb_dequeue - remove from the head of the queue
767 * __skb_dequeue_tail - remove from the tail of the queue
1313 #define skb_queue_walk(queue, skb) \
1314 for (skb = (queue)->next; \
1315 prefetch(skb->next), (skb != (struct sk_buff *)(queue)); \
1318 #define skb_queue_reverse_walk(queue, skb) \
1319 for (skb = (queue)->prev; \
1320 prefetch(skb->prev), (skb != (struct sk_buff *)(queue)); \