Lines Matching defs:to_free
69 struct sk_buff **to_free);
91 #define TCQ_F_DEQUEUE_DROPS 0x400 /* ->dequeue() can drop packets in q->to_free */
125 struct sk_buff *to_free;
227 struct sk_buff *to_free = NULL;
245 to_free = qdisc->to_free;
246 if (to_free)
247 qdisc->to_free = NULL;
250 return to_free;
313 struct sk_buff **to_free);
885 struct sk_buff **to_free)
887 return sch->enqueue(skb, sch, to_free);
1139 skb->next = q->to_free;
1140 q->to_free = skb;
1146 static inline void __qdisc_drop(struct sk_buff *skb, struct sk_buff **to_free)
1148 skb->next = *to_free;
1149 *to_free = skb;
1153 struct sk_buff **to_free)
1156 skb->prev->next = *to_free;
1158 skb->next = *to_free;
1159 *to_free = skb;
1164 struct sk_buff **to_free)
1172 __qdisc_drop(skb, to_free);
1296 struct sk_buff **to_free)
1298 __qdisc_drop(skb, to_free);
1305 struct sk_buff **to_free)
1307 __qdisc_drop(skb, to_free);
1314 struct sk_buff **to_free,
1318 return qdisc_drop(skb, sch, to_free);
1322 struct sk_buff **to_free)
1324 __qdisc_drop_all(skb, to_free);