Lines Matching refs:reply
1377 struct sk_buff *reply; in arp_reduce() local
1391 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha, in arp_reduce()
1396 if (reply == NULL) in arp_reduce()
1399 skb_reset_mac_header(reply); in arp_reduce()
1400 __skb_pull(reply, skb_network_offset(reply)); in arp_reduce()
1401 reply->ip_summed = CHECKSUM_UNNECESSARY; in arp_reduce()
1402 reply->pkt_type = PACKET_HOST; in arp_reduce()
1404 if (netif_rx_ni(reply) == NET_RX_DROP) in arp_reduce()
1424 struct sk_buff *reply; in vxlan_na_create() local
1437 reply = alloc_skb(len, GFP_ATOMIC); in vxlan_na_create()
1438 if (reply == NULL) in vxlan_na_create()
1441 reply->protocol = htons(ETH_P_IPV6); in vxlan_na_create()
1442 reply->dev = dev; in vxlan_na_create()
1443 skb_reserve(reply, LL_RESERVED_SPACE(request->dev)); in vxlan_na_create()
1444 skb_push(reply, sizeof(struct ethhdr)); in vxlan_na_create()
1445 skb_set_mac_header(reply, 0); in vxlan_na_create()
1459 ether_addr_copy(eth_hdr(reply)->h_dest, daddr); in vxlan_na_create()
1460 ether_addr_copy(eth_hdr(reply)->h_source, n->ha); in vxlan_na_create()
1461 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6); in vxlan_na_create()
1462 reply->protocol = htons(ETH_P_IPV6); in vxlan_na_create()
1464 skb_pull(reply, sizeof(struct ethhdr)); in vxlan_na_create()
1465 skb_set_network_header(reply, 0); in vxlan_na_create()
1466 skb_put(reply, sizeof(struct ipv6hdr)); in vxlan_na_create()
1470 pip6 = ipv6_hdr(reply); in vxlan_na_create()
1479 skb_pull(reply, sizeof(struct ipv6hdr)); in vxlan_na_create()
1480 skb_set_transport_header(reply, 0); in vxlan_na_create()
1482 na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen); in vxlan_na_create()
1501 skb_push(reply, sizeof(struct ipv6hdr)); in vxlan_na_create()
1503 reply->ip_summed = CHECKSUM_UNNECESSARY; in vxlan_na_create()
1505 return reply; in vxlan_na_create()
1538 struct sk_buff *reply; in neigh_reduce() local
1552 reply = vxlan_na_create(skb, n, in neigh_reduce()
1557 if (reply == NULL) in neigh_reduce()
1560 if (netif_rx_ni(reply) == NET_RX_DROP) in neigh_reduce()