Lines Matching refs:reply

1887 		struct sk_buff	*reply;  in arp_reduce()  local
1901 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha, in arp_reduce()
1906 if (reply == NULL) in arp_reduce()
1909 skb_reset_mac_header(reply); in arp_reduce()
1910 __skb_pull(reply, skb_network_offset(reply)); in arp_reduce()
1911 reply->ip_summed = CHECKSUM_UNNECESSARY; in arp_reduce()
1912 reply->pkt_type = PACKET_HOST; in arp_reduce()
1914 if (netif_rx(reply) == NET_RX_DROP) { in arp_reduce()
1938 struct sk_buff *reply; in vxlan_na_create() local
1951 reply = alloc_skb(len, GFP_ATOMIC); in vxlan_na_create()
1952 if (reply == NULL) in vxlan_na_create()
1955 reply->protocol = htons(ETH_P_IPV6); in vxlan_na_create()
1956 reply->dev = dev; in vxlan_na_create()
1957 skb_reserve(reply, LL_RESERVED_SPACE(request->dev)); in vxlan_na_create()
1958 skb_push(reply, sizeof(struct ethhdr)); in vxlan_na_create()
1959 skb_reset_mac_header(reply); in vxlan_na_create()
1968 kfree_skb(reply); in vxlan_na_create()
1978 ether_addr_copy(eth_hdr(reply)->h_dest, daddr); in vxlan_na_create()
1979 ether_addr_copy(eth_hdr(reply)->h_source, n->ha); in vxlan_na_create()
1980 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6); in vxlan_na_create()
1981 reply->protocol = htons(ETH_P_IPV6); in vxlan_na_create()
1983 skb_pull(reply, sizeof(struct ethhdr)); in vxlan_na_create()
1984 skb_reset_network_header(reply); in vxlan_na_create()
1985 skb_put(reply, sizeof(struct ipv6hdr)); in vxlan_na_create()
1989 pip6 = ipv6_hdr(reply); in vxlan_na_create()
1998 skb_pull(reply, sizeof(struct ipv6hdr)); in vxlan_na_create()
1999 skb_reset_transport_header(reply); in vxlan_na_create()
2002 na = skb_put_zero(reply, sizeof(*na) + na_olen); in vxlan_na_create()
2018 skb_push(reply, sizeof(struct ipv6hdr)); in vxlan_na_create()
2020 reply->ip_summed = CHECKSUM_UNNECESSARY; in vxlan_na_create()
2022 return reply; in vxlan_na_create()
2051 struct sk_buff *reply; in neigh_reduce() local
2065 reply = vxlan_na_create(skb, n, in neigh_reduce()
2070 if (reply == NULL) in neigh_reduce()
2073 if (netif_rx(reply) == NET_RX_DROP) { in neigh_reduce()