Lines Matching refs:reply
1390 struct sk_buff *reply; in arp_reduce() local
1404 reply = arp_create(ARPOP_REPLY, ETH_P_ARP, sip, dev, tip, sha, in arp_reduce()
1409 if (reply == NULL) in arp_reduce()
1412 skb_reset_mac_header(reply); in arp_reduce()
1413 __skb_pull(reply, skb_network_offset(reply)); in arp_reduce()
1414 reply->ip_summed = CHECKSUM_UNNECESSARY; in arp_reduce()
1415 reply->pkt_type = PACKET_HOST; in arp_reduce()
1417 if (netif_rx_ni(reply) == NET_RX_DROP) in arp_reduce()
1437 struct sk_buff *reply; in vxlan_na_create() local
1450 reply = alloc_skb(len, GFP_ATOMIC); in vxlan_na_create()
1451 if (reply == NULL) in vxlan_na_create()
1454 reply->protocol = htons(ETH_P_IPV6); in vxlan_na_create()
1455 reply->dev = dev; in vxlan_na_create()
1456 skb_reserve(reply, LL_RESERVED_SPACE(request->dev)); in vxlan_na_create()
1457 skb_push(reply, sizeof(struct ethhdr)); in vxlan_na_create()
1458 skb_set_mac_header(reply, 0); in vxlan_na_create()
1472 ether_addr_copy(eth_hdr(reply)->h_dest, daddr); in vxlan_na_create()
1473 ether_addr_copy(eth_hdr(reply)->h_source, n->ha); in vxlan_na_create()
1474 eth_hdr(reply)->h_proto = htons(ETH_P_IPV6); in vxlan_na_create()
1475 reply->protocol = htons(ETH_P_IPV6); in vxlan_na_create()
1477 skb_pull(reply, sizeof(struct ethhdr)); in vxlan_na_create()
1478 skb_set_network_header(reply, 0); in vxlan_na_create()
1479 skb_put(reply, sizeof(struct ipv6hdr)); in vxlan_na_create()
1483 pip6 = ipv6_hdr(reply); in vxlan_na_create()
1492 skb_pull(reply, sizeof(struct ipv6hdr)); in vxlan_na_create()
1493 skb_set_transport_header(reply, 0); in vxlan_na_create()
1495 na = (struct nd_msg *)skb_put(reply, sizeof(*na) + na_olen); in vxlan_na_create()
1514 skb_push(reply, sizeof(struct ipv6hdr)); in vxlan_na_create()
1516 reply->ip_summed = CHECKSUM_UNNECESSARY; in vxlan_na_create()
1518 return reply; in vxlan_na_create()
1551 struct sk_buff *reply; in neigh_reduce() local
1565 reply = vxlan_na_create(skb, n, in neigh_reduce()
1570 if (reply == NULL) in neigh_reduce()
1573 if (netif_rx_ni(reply) == NET_RX_DROP) in neigh_reduce()