Lines Matching refs:eh
414 struct ethhdr *eh, *eh2; in eth_gro_receive() local
420 hlen = off_eth + sizeof(*eh); in eth_gro_receive()
421 eh = skb_gro_header_fast(skb, off_eth); in eth_gro_receive()
423 eh = skb_gro_header_slow(skb, hlen, off_eth); in eth_gro_receive()
424 if (unlikely(!eh)) in eth_gro_receive()
435 if (compare_ether_header(eh, eh2)) { in eth_gro_receive()
441 type = eh->h_proto; in eth_gro_receive()
450 skb_gro_pull(skb, sizeof(*eh)); in eth_gro_receive()
451 skb_gro_postpull_rcsum(skb, eh, sizeof(*eh)); in eth_gro_receive()
465 struct ethhdr *eh = (struct ethhdr *)(skb->data + nhoff); in eth_gro_complete() local
466 __be16 type = eh->h_proto; in eth_gro_complete()