tag | line | file | source code |
list | 134 | net/inet/datagram.c | if(skb->list == NULL) /* Been dequeued by someone - ie its read */ |
list | 62 | net/inet/skbuff.c | skb,skb->truesize,skb->mem_len,skb->magic,skb->list,skb->free); |
list | 68 | net/inet/skbuff.c | skb,skb->truesize,skb->mem_len,skb->magic,skb->list,skb->free); |
list | 74 | net/inet/skbuff.c | skb,skb->truesize,skb->mem_len,skb->magic,skb->list); |
list | 83 | net/inet/skbuff.c | void skb_queue_head(struct sk_buff *volatile* list,struct sk_buff *newsk) |
list | 88 | net/inet/skbuff.c | if(newsk->list) |
list | 92 | net/inet/skbuff.c | newsk->list=list; |
list | 94 | net/inet/skbuff.c | newsk->next=*list; |
list | 96 | net/inet/skbuff.c | if(*list) |
list | 97 | net/inet/skbuff.c | newsk->prev=(*list)->prev; |
list | 104 | net/inet/skbuff.c | *list=newsk; |
list | 112 | net/inet/skbuff.c | void skb_queue_tail(struct sk_buff *volatile* list, struct sk_buff *newsk) |
list | 116 | net/inet/skbuff.c | if(newsk->list) |
list | 123 | net/inet/skbuff.c | newsk->list=list; |
list | 124 | net/inet/skbuff.c | if(*list) |
list | 126 | net/inet/skbuff.c | (*list)->prev->next=newsk; |
list | 127 | net/inet/skbuff.c | newsk->prev=(*list)->prev; |
list | 128 | net/inet/skbuff.c | newsk->next=*list; |
list | 129 | net/inet/skbuff.c | (*list)->prev=newsk; |
list | 135 | net/inet/skbuff.c | *list=newsk; |
list | 148 | net/inet/skbuff.c | struct sk_buff *skb_dequeue(struct sk_buff *volatile* list) |
list | 156 | net/inet/skbuff.c | if(*list==NULL) |
list | 162 | net/inet/skbuff.c | result=*list; |
list | 164 | net/inet/skbuff.c | *list=NULL; |
list | 169 | net/inet/skbuff.c | *list=result->next; |
list | 175 | net/inet/skbuff.c | if(result->list!=list) |
list | 178 | net/inet/skbuff.c | result->list=0; |
list | 195 | net/inet/skbuff.c | if(!old->list) |
list | 197 | net/inet/skbuff.c | if(newsk->list) |
list | 202 | net/inet/skbuff.c | newsk->list=old->list; |
list | 222 | net/inet/skbuff.c | if(!old->list) |
list | 224 | net/inet/skbuff.c | if(newsk->list) |
list | 229 | net/inet/skbuff.c | newsk->list=old->list; |
list | 253 | net/inet/skbuff.c | if(skb->list) |
list | 257 | net/inet/skbuff.c | if(*skb->list==skb) |
list | 260 | net/inet/skbuff.c | *skb->list=NULL; |
list | 262 | net/inet/skbuff.c | *skb->list=skb->next; |
list | 266 | net/inet/skbuff.c | skb->list=0; |
list | 277 | net/inet/skbuff.c | void skb_new_list_head(struct sk_buff *volatile* list) |
list | 279 | net/inet/skbuff.c | struct sk_buff *skb=skb_peek(list); |
list | 285 | net/inet/skbuff.c | skb->list=list; |
list | 288 | net/inet/skbuff.c | while(skb!=*list); |
list | 299 | net/inet/skbuff.c | struct sk_buff *skb_peek(struct sk_buff *volatile* list) |
list | 301 | net/inet/skbuff.c | return *list; |
list | 312 | net/inet/skbuff.c | struct sk_buff *skb_peek_copy(struct sk_buff *volatile* list) |
list | 323 | net/inet/skbuff.c | orig=skb_peek(list); |
list | 340 | net/inet/skbuff.c | if(skb_peek(list)!=orig) /* List changed go around another time */ |
list | 354 | net/inet/skbuff.c | newsk->list=NULL; |
list | 384 | net/inet/skbuff.c | if(skb->list) |
list | 409 | net/inet/skbuff.c | skb->list= 0; /* Not on a list */ |
list | 46 | net/inet/skbuff.h | struct sk_buff *volatile* list; |
list | 88 | net/inet/skbuff.h | extern void skb_queue_head(struct sk_buff * volatile *list,struct sk_buff *buf); |
list | 89 | net/inet/skbuff.h | extern void skb_queue_tail(struct sk_buff * volatile *list,struct sk_buff *buf); |
list | 90 | net/inet/skbuff.h | extern struct sk_buff * skb_dequeue(struct sk_buff * volatile *list); |
list | 94 | net/inet/skbuff.h | extern void skb_new_list_head(struct sk_buff *volatile* list); |
list | 95 | net/inet/skbuff.h | extern struct sk_buff * skb_peek(struct sk_buff * volatile *list); |
list | 96 | net/inet/skbuff.h | extern struct sk_buff * skb_peek_copy(struct sk_buff * volatile *list); |
list | 2106 | net/inet/tcp.c | struct sk_buff *list = NULL; |
list | 2111 | net/inet/tcp.c | if (list == NULL || before (skb2->h.seq, list->h.seq)) { |
list | 2112 | net/inet/tcp.c | skb->link3 = list; |
list | 2114 | net/inet/tcp.c | list = skb; |
list | 2116 | net/inet/tcp.c | for (skb3 = list; ; skb3 = (struct sk_buff *)skb3->link3) { |
list | 2127 | net/inet/tcp.c | sk->send_head = list; |
list | 2449 | net/inet/tcp.c | skb->list = &sk->rqueue; |