Home
last modified time | relevance | path

Searched refs:ethh (Results 1 – 10 of 10) sorted by relevance

/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_selftest.c84 struct ethhdr *ethh; in mlx5e_test_get_udp_skb() local
99 ethh = skb_push(skb, ETH_HLEN); in mlx5e_test_get_udp_skb()
109 ether_addr_copy(ethh->h_dest, priv->netdev->dev_addr); in mlx5e_test_get_udp_skb()
110 eth_zero_addr(ethh->h_source); in mlx5e_test_get_udp_skb()
111 ethh->h_proto = htons(ETH_P_IP); in mlx5e_test_get_udp_skb()
165 struct ethhdr *ethh; in mlx5e_test_loopback_validate() local
173 ethh = (struct ethhdr *)skb_mac_header(skb); in mlx5e_test_loopback_validate()
174 if (!ether_addr_equal(ethh->h_dest, orig_ndev->dev_addr)) in mlx5e_test_loopback_validate()
/linux/drivers/net/ethernet/mellanox/mlx4/
H A Den_selftest.c52 struct ethhdr *ethh; in mlx4_en_test_loopback_xmit() local
66 ethh = skb_put(skb, sizeof(struct ethhdr)); in mlx4_en_test_loopback_xmit()
68 memcpy(ethh->h_dest, priv->dev->dev_addr, ETH_ALEN); in mlx4_en_test_loopback_xmit()
69 eth_zero_addr(ethh->h_source); in mlx4_en_test_loopback_xmit()
70 ethh->h_proto = htons(ETH_P_ARP); in mlx4_en_test_loopback_xmit()
H A Den_rx.c782 const struct ethhdr *ethh = va; in mlx4_en_process_rx_cq() local
788 dma_sync_single_for_cpu(priv->ddev, dma, sizeof(*ethh), in mlx4_en_process_rx_cq()
791 if (is_multicast_ether_addr(ethh->h_dest)) { in mlx4_en_process_rx_cq()
797 mac_hash = ethh->h_source[MLX4_EN_MAC_HASH_IDX]; in mlx4_en_process_rx_cq()
801 ethh->h_source)) in mlx4_en_process_rx_cq()
H A Den_tx.c1008 struct ethhdr *ethh; in mlx4_en_xmit() local
1013 ethh = (struct ethhdr *)skb->data; in mlx4_en_xmit()
1014 tx_desc->ctrl.srcrb_flags16[0] = get_unaligned((__be16 *)ethh->h_dest); in mlx4_en_xmit()
1015 tx_desc->ctrl.imm = get_unaligned((__be32 *)(ethh->h_dest + 2)); in mlx4_en_xmit()
/linux/drivers/net/ipvlan/
H A Dipvlan_core.c231 struct ethhdr *ethh; in ipvlan_process_multicast() local
251 ethh = eth_hdr(skb); in ipvlan_process_multicast()
253 mac_hash = ipvlan_mac_hash(ethh->h_dest); in ipvlan_process_multicast()
255 if (ether_addr_equal(ethh->h_dest, port->dev->broadcast)) in ipvlan_process_multicast()
536 struct ethhdr *ethh = eth_hdr(skb); in ipvlan_process_outbound() local
538 if (is_multicast_ether_addr(ethh->h_dest)) { in ipvlan_process_outbound()
546 skb_pull(skb, sizeof(*ethh)); in ipvlan_process_outbound()
/linux/drivers/infiniband/hw/irdma/
H A Dcm.c423 struct ethhdr *ethh; in irdma_form_uda_cm_frame() local
463 ethh = (struct ethhdr *)buf; in irdma_form_uda_cm_frame()
477 ether_addr_copy(ethh->h_dest, cm_node->rem_mac); in irdma_form_uda_cm_frame()
478 ether_addr_copy(ethh->h_source, cm_node->loc_mac); in irdma_form_uda_cm_frame()
480 ((struct vlan_ethhdr *)ethh)->h_vlan_proto = in irdma_form_uda_cm_frame()
484 ((struct vlan_ethhdr *)ethh)->h_vlan_TCI = htons(vtag); in irdma_form_uda_cm_frame()
486 ((struct vlan_ethhdr *)ethh)->h_vlan_encapsulated_proto = in irdma_form_uda_cm_frame()
489 ethh->h_proto = htons(ETH_P_IP); in irdma_form_uda_cm_frame()
510 ether_addr_copy(ethh->h_dest, cm_node->rem_mac); in irdma_form_uda_cm_frame()
511 ether_addr_copy(ethh->h_source, cm_node->loc_mac); in irdma_form_uda_cm_frame()
[all …]
/linux/drivers/media/dvb-core/
H A Ddvb_net.c307 struct ethhdr *ethh; member
735 h->ethh = (struct ethhdr *)h->priv->ule_skb->data; in dvb_net_ule_check_crc()
736 memcpy(h->ethh->h_dest, dest_addr, ETH_ALEN); in dvb_net_ule_check_crc()
737 eth_zero_addr(h->ethh->h_source); in dvb_net_ule_check_crc()
738 h->ethh->h_proto = htons(h->priv->ule_sndu_type); in dvb_net_ule_check_crc()
765 .ethh = NULL, in dvb_net_ule()
/linux/drivers/net/ethernet/qlogic/qed/
H A Dqed_iwarp.c1678 struct ethhdr *ethh; in qed_iwarp_parse_rx_pkt() local
1686 ethh = buf; in qed_iwarp_parse_rx_pkt()
1687 eth_type = ntohs(ethh->h_proto); in qed_iwarp_parse_rx_pkt()
1690 vethh = (struct vlan_ethhdr *)ethh; in qed_iwarp_parse_rx_pkt()
1697 if (!ether_addr_equal(ethh->h_dest, in qed_iwarp_parse_rx_pkt()
1702 ethh->h_dest, p_hwfn->p_rdma_info->iwarp.mac_addr); in qed_iwarp_parse_rx_pkt()
1706 ether_addr_copy(remote_mac_addr, ethh->h_source); in qed_iwarp_parse_rx_pkt()
1707 ether_addr_copy(local_mac_addr, ethh->h_dest); in qed_iwarp_parse_rx_pkt()
1710 eth_type, ethh->h_source); in qed_iwarp_parse_rx_pkt()
1713 eth_hlen, ethh->h_dest); in qed_iwarp_parse_rx_pkt()
[all …]
/linux/net/openvswitch/
H A Dactions.c308 const struct ovs_action_push_eth *ethh) in push_eth() argument
312 err = skb_eth_push(skb, ethh->addresses.eth_dst, in push_eth()
313 ethh->addresses.eth_src); in push_eth()
/linux/net/core/
H A Dfilter.c2401 struct ethhdr *ethh = eth_hdr(skb); in __bpf_redirect_neigh() local
2406 if (is_multicast_ether_addr(ethh->h_dest)) in __bpf_redirect_neigh()
2409 skb_pull(skb, sizeof(*ethh)); in __bpf_redirect_neigh()