Lines Matching refs:uh
68 struct udphdr *uh; in udp6_ufo_fragment() local
77 uh = udp_hdr(skb); in udp6_ufo_fragment()
80 uh->check = 0; in udp6_ufo_fragment()
82 uh->check = udp_v6_check(skb->len, &ipv6h->saddr, in udp6_ufo_fragment()
85 if (uh->check == 0) in udp6_ufo_fragment()
86 uh->check = CSUM_MANGLED_0; in udp6_ufo_fragment()
132 struct udphdr *uh = udp_gro_udphdr(skb); in udp6_gro_receive() local
134 if (unlikely(!uh)) in udp6_gro_receive()
141 if (skb_gro_checksum_validate_zero_check(skb, IPPROTO_UDP, uh->check, in udp6_gro_receive()
144 else if (uh->check) in udp6_gro_receive()
145 skb_gro_checksum_try_convert(skb, IPPROTO_UDP, uh->check, in udp6_gro_receive()
150 return udp_gro_receive(head, skb, uh); in udp6_gro_receive()
160 struct udphdr *uh = (struct udphdr *)(skb->data + nhoff); in udp6_gro_complete() local
162 if (uh->check) { in udp6_gro_complete()
164 uh->check = ~udp_v6_check(skb->len - nhoff, &ipv6h->saddr, in udp6_gro_complete()