Lines Matching defs:eat
2647 int i, k, eat = (skb->tail + delta) - skb->end;
2649 if (eat > 0 || skb_cloned(skb)) {
2650 if (pskb_expand_head(skb, 0, eat > 0 ? eat + 128 : 0,
2665 eat = delta;
2669 if (size >= eat)
2671 eat -= size;
2681 if (eat) {
2687 if (list->len <= eat) {
2689 eat -= list->len;
2710 if (!pskb_pull(list, eat)) {
2716 } while (eat);
2732 eat = delta;
2737 if (size <= eat) {
2739 eat -= size;
2744 if (eat) {
2745 skb_frag_off_add(frag, eat);
2746 skb_frag_size_sub(frag, eat);
2749 eat = 0;
6415 /* carve out the first eat bytes from skb's frag_list. May recurse into
6419 struct skb_shared_info *shinfo, int eat,
6428 pr_err("Not enough bytes to eat. Want %d\n", eat);
6431 if (list->len <= eat) {
6433 eat -= list->len;
6448 if (pskb_carve(list, eat, gfp_mask) < 0) {
6454 } while (eat);