tag | line | file | source code |
list | 153 | net/inet/datagram.c | if(skb->list == NULL) /* Been dequeued by someone - ie its read */ |
list | 64 | net/inet/skbuff.c | skb,skb->truesize,skb->mem_len,skb->magic,skb->list,skb->free); |
list | 70 | net/inet/skbuff.c | skb,skb->truesize,skb->mem_len,skb->magic,skb->list,skb->free); |
list | 76 | net/inet/skbuff.c | skb,skb->truesize,skb->mem_len,skb->magic,skb->list); |
list | 85 | net/inet/skbuff.c | void skb_queue_head(struct sk_buff *volatile* list,struct sk_buff *newsk) |
list | 90 | net/inet/skbuff.c | if(newsk->list) |
list | 94 | net/inet/skbuff.c | newsk->list=list; |
list | 96 | net/inet/skbuff.c | newsk->next=*list; |
list | 98 | net/inet/skbuff.c | if(*list) |
list | 99 | net/inet/skbuff.c | newsk->prev=(*list)->prev; |
list | 106 | net/inet/skbuff.c | *list=newsk; |
list | 114 | net/inet/skbuff.c | void skb_queue_tail(struct sk_buff *volatile* list, struct sk_buff *newsk) |
list | 118 | net/inet/skbuff.c | if(newsk->list) |
list | 125 | net/inet/skbuff.c | newsk->list=list; |
list | 126 | net/inet/skbuff.c | if(*list) |
list | 128 | net/inet/skbuff.c | (*list)->prev->next=newsk; |
list | 129 | net/inet/skbuff.c | newsk->prev=(*list)->prev; |
list | 130 | net/inet/skbuff.c | newsk->next=*list; |
list | 131 | net/inet/skbuff.c | (*list)->prev=newsk; |
list | 137 | net/inet/skbuff.c | *list=newsk; |
list | 150 | net/inet/skbuff.c | struct sk_buff *skb_dequeue(struct sk_buff *volatile* list) |
list | 158 | net/inet/skbuff.c | if(*list==NULL) |
list | 164 | net/inet/skbuff.c | result=*list; |
list | 166 | net/inet/skbuff.c | *list=NULL; |
list | 171 | net/inet/skbuff.c | *list=result->next; |
list | 177 | net/inet/skbuff.c | if(result->list!=list) |
list | 180 | net/inet/skbuff.c | result->list=0; |
list | 197 | net/inet/skbuff.c | if(!old->list) |
list | 199 | net/inet/skbuff.c | if(newsk->list) |
list | 204 | net/inet/skbuff.c | newsk->list=old->list; |
list | 224 | net/inet/skbuff.c | if(!old->list) |
list | 226 | net/inet/skbuff.c | if(newsk->list) |
list | 231 | net/inet/skbuff.c | newsk->list=old->list; |
list | 255 | net/inet/skbuff.c | if(skb->list) |
list | 259 | net/inet/skbuff.c | if(*skb->list==skb) |
list | 262 | net/inet/skbuff.c | *skb->list=NULL; |
list | 264 | net/inet/skbuff.c | *skb->list=skb->next; |
list | 268 | net/inet/skbuff.c | skb->list=0; |
list | 279 | net/inet/skbuff.c | void skb_new_list_head(struct sk_buff *volatile* list) |
list | 281 | net/inet/skbuff.c | struct sk_buff *skb=skb_peek(list); |
list | 287 | net/inet/skbuff.c | skb->list=list; |
list | 290 | net/inet/skbuff.c | while(skb!=*list); |
list | 301 | net/inet/skbuff.c | struct sk_buff *skb_peek(struct sk_buff *volatile* list) |
list | 303 | net/inet/skbuff.c | return *list; |
list | 314 | net/inet/skbuff.c | struct sk_buff *skb_peek_copy(struct sk_buff *volatile* list) |
list | 325 | net/inet/skbuff.c | orig=skb_peek(list); |
list | 342 | net/inet/skbuff.c | if(skb_peek(list)!=orig) /* List changed go around another time */ |
list | 356 | net/inet/skbuff.c | newsk->list=NULL; |
list | 392 | net/inet/skbuff.c | if(skb->list) |
list | 443 | net/inet/skbuff.c | skb->list= 0; /* Not on a list */ |
list | 46 | net/inet/skbuff.h | struct sk_buff *volatile* list; |
list | 90 | net/inet/skbuff.h | extern void skb_queue_head(struct sk_buff * volatile *list,struct sk_buff *buf); |
list | 91 | net/inet/skbuff.h | extern void skb_queue_tail(struct sk_buff * volatile *list,struct sk_buff *buf); |
list | 92 | net/inet/skbuff.h | extern struct sk_buff * skb_dequeue(struct sk_buff * volatile *list); |
list | 96 | net/inet/skbuff.h | extern void skb_new_list_head(struct sk_buff *volatile* list); |
list | 97 | net/inet/skbuff.h | extern struct sk_buff * skb_peek(struct sk_buff * volatile *list); |
list | 98 | net/inet/skbuff.h | extern struct sk_buff * skb_peek_copy(struct sk_buff * volatile *list); |
list | 2148 | net/inet/tcp.c | struct sk_buff *list = NULL; |
list | 2153 | net/inet/tcp.c | if (list == NULL || before (skb2->h.seq, list->h.seq)) { |
list | 2154 | net/inet/tcp.c | skb->link3 = list; |
list | 2156 | net/inet/tcp.c | list = skb; |
list | 2158 | net/inet/tcp.c | for (skb3 = list; ; skb3 = (struct sk_buff *)skb3->link3) { |
list | 2169 | net/inet/tcp.c | sk->send_head = list; |
list | 2599 | net/inet/tcp.c | skb->list = &sk->rqueue; |