Home
last modified time | relevance | path

Searched refs:iph2 (Results 1 – 2 of 2) sorted by relevance

/linux-4.1.27/net/ipv6/
Dip6_offload.c217 const struct ipv6hdr *iph2; in ipv6_gro_receive() local
223 iph2 = (struct ipv6hdr *)(p->data + off); in ipv6_gro_receive()
224 first_word = *(__be32 *)iph ^ *(__be32 *)iph2; in ipv6_gro_receive()
233 memcmp(&iph->nexthdr, &iph2->nexthdr, in ipv6_gro_receive()
/linux-4.1.27/net/ipv4/
Daf_inet.c1334 struct iphdr *iph2; in inet_gro_receive() local
1339 iph2 = (struct iphdr *)(p->data + off); in inet_gro_receive()
1345 if ((iph->protocol ^ iph2->protocol) | in inet_gro_receive()
1346 ((__force u32)iph->saddr ^ (__force u32)iph2->saddr) | in inet_gro_receive()
1347 ((__force u32)iph->daddr ^ (__force u32)iph2->daddr)) { in inet_gro_receive()
1354 (iph->ttl ^ iph2->ttl) | in inet_gro_receive()
1355 (iph->tos ^ iph2->tos) | in inet_gro_receive()
1356 ((iph->frag_off ^ iph2->frag_off) & htons(IP_DF)); in inet_gro_receive()
1364 ((u16)(ntohs(iph2->id) + NAPI_GRO_CB(p)->count) ^ id); in inet_gro_receive()