Lines Matching refs:eh
435 struct ethhdr *eh, *eh2; in eth_gro_receive() local
441 hlen = off_eth + sizeof(*eh); in eth_gro_receive()
442 eh = skb_gro_header_fast(skb, off_eth); in eth_gro_receive()
444 eh = skb_gro_header_slow(skb, hlen, off_eth); in eth_gro_receive()
445 if (unlikely(!eh)) in eth_gro_receive()
456 if (compare_ether_header(eh, eh2)) { in eth_gro_receive()
462 type = eh->h_proto; in eth_gro_receive()
471 skb_gro_pull(skb, sizeof(*eh)); in eth_gro_receive()
472 skb_gro_postpull_rcsum(skb, eh, sizeof(*eh)); in eth_gro_receive()
486 struct ethhdr *eh = (struct ethhdr *)(skb->data + nhoff); in eth_gro_complete() local
487 __be16 type = eh->h_proto; in eth_gro_complete()