Lines Matching refs:tailbits
4995 * @tailbits: Amount of trailing space to be added
4996 * @trailer: Returned pointer to the skb where the @tailbits space begins
5002 * If @tailbits is given, make sure that there is space to write @tailbits
5009 int skb_cow_data(struct sk_buff *skb, int tailbits, struct sk_buff **trailer)
5030 if (skb_tailroom(skb) < tailbits &&
5031 pskb_expand_head(skb, 0, tailbits-skb_tailroom(skb)+128, GFP_ATOMIC))
5057 if (skb1->next == NULL && tailbits) {
5060 skb_tailroom(skb1) < tailbits)
5061 ntail = tailbits + 128;