Lines Matching refs:eh
453 struct ethhdr *eh, *eh2; in eth_gro_receive() local
459 hlen = off_eth + sizeof(*eh); in eth_gro_receive()
460 eh = skb_gro_header_fast(skb, off_eth); in eth_gro_receive()
462 eh = skb_gro_header_slow(skb, hlen, off_eth); in eth_gro_receive()
463 if (unlikely(!eh)) in eth_gro_receive()
474 if (compare_ether_header(eh, eh2)) { in eth_gro_receive()
480 type = eh->h_proto; in eth_gro_receive()
489 skb_gro_pull(skb, sizeof(*eh)); in eth_gro_receive()
490 skb_gro_postpull_rcsum(skb, eh, sizeof(*eh)); in eth_gro_receive()
504 struct ethhdr *eh = (struct ethhdr *)(skb->data + nhoff); in eth_gro_complete() local
505 __be16 type = eh->h_proto; in eth_gro_complete()