Home
last modified time | relevance | path

Searched refs:h_proto (Results 1 – 25 of 216) sorted by relevance

123456789

/Linux-v5.15/samples/bpf/
Dxdp1_kern.c50 u16 h_proto; in xdp_prog1() local
58 h_proto = eth->h_proto; in xdp_prog1()
61 if (h_proto == htons(ETH_P_8021Q) || h_proto == htons(ETH_P_8021AD)) { in xdp_prog1()
68 h_proto = vhdr->h_vlan_encapsulated_proto; in xdp_prog1()
71 if (h_proto == htons(ETH_P_8021Q) || h_proto == htons(ETH_P_8021AD)) { in xdp_prog1()
78 h_proto = vhdr->h_vlan_encapsulated_proto; in xdp_prog1()
81 if (h_proto == htons(ETH_P_IP)) in xdp_prog1()
83 else if (h_proto == htons(ETH_P_IPV6)) in xdp_prog1()
Dxdp2_kern.c66 u16 h_proto; in xdp_prog1() local
74 h_proto = eth->h_proto; in xdp_prog1()
77 if (h_proto == htons(ETH_P_8021Q) || h_proto == htons(ETH_P_8021AD)) { in xdp_prog1()
84 h_proto = vhdr->h_vlan_encapsulated_proto; in xdp_prog1()
87 if (h_proto == htons(ETH_P_8021Q) || h_proto == htons(ETH_P_8021AD)) { in xdp_prog1()
94 h_proto = vhdr->h_vlan_encapsulated_proto; in xdp_prog1()
97 if (h_proto == htons(ETH_P_IP)) in xdp_prog1()
99 else if (h_proto == htons(ETH_P_IPV6)) in xdp_prog1()
Dparse_varlen.c118 uint64_t h_proto, nh_off; in handle_ingress() local
124 h_proto = eth->h_proto; in handle_ingress()
126 if (h_proto == ETH_P_8021Q || h_proto == ETH_P_8021AD) { in handle_ingress()
133 h_proto = vhdr->h_vlan_encapsulated_proto; in handle_ingress()
135 if (h_proto == ETH_P_8021Q || h_proto == ETH_P_8021AD) { in handle_ingress()
142 h_proto = vhdr->h_vlan_encapsulated_proto; in handle_ingress()
144 if (h_proto == htons(ETH_P_IP)) in handle_ingress()
146 else if (h_proto == htons(ETH_P_IPV6)) in handle_ingress()
Dtc_l2_redirect_kern.c37 unsigned short h_proto; member
76 if (eth->h_proto == htons(ETH_P_IP)) { in _l2_to_iptun_ingress_forward()
89 } else if (eth->h_proto == htons(ETH_P_IPV6)) { in _l2_to_iptun_ingress_forward()
127 if (eth->h_proto == htons(ETH_P_IP)) { in _l2_to_iptun_ingress_redirect()
135 if (!is_vip_addr(eth->h_proto, daddr)) in _l2_to_iptun_ingress_redirect()
166 if (eth->h_proto == htons(ETH_P_IP)) { in _l2_to_ip6tun_ingress_redirect()
173 if (!is_vip_addr(eth->h_proto, iph->daddr)) in _l2_to_ip6tun_ingress_redirect()
178 } else if (eth->h_proto == htons(ETH_P_IPV6)) { in _l2_to_ip6tun_ingress_redirect()
185 if (!is_vip_addr(eth->h_proto, ip6h->daddr.s6_addr32[0])) in _l2_to_ip6tun_ingress_redirect()
216 if (eth->h_proto == htons(ETH_P_IP)) { in _drop_non_tun_vip()
[all …]
Dxdp_fwd_kern.c51 u16 h_proto; in xdp_fwd_flags() local
61 h_proto = eth->h_proto; in xdp_fwd_flags()
62 if (h_proto == htons(ETH_P_IP)) { in xdp_fwd_flags()
79 } else if (h_proto == htons(ETH_P_IPV6)) { in xdp_fwd_flags()
133 if (h_proto == htons(ETH_P_IP)) in xdp_fwd_flags()
135 else if (h_proto == htons(ETH_P_IPV6)) in xdp_fwd_flags()
Dxdp_router_ipv4_kern.c119 u16 h_proto; in xdp_router_ipv4_prog() local
127 h_proto = eth->h_proto; in xdp_router_ipv4_prog()
129 if (h_proto == htons(ETH_P_8021Q) || h_proto == htons(ETH_P_8021AD)) { in xdp_router_ipv4_prog()
136 h_proto = vhdr->h_vlan_encapsulated_proto; in xdp_router_ipv4_prog()
138 if (h_proto == htons(ETH_P_ARP)) { in xdp_router_ipv4_prog()
140 } else if (h_proto == htons(ETH_P_IP)) { in xdp_router_ipv4_prog()
Dxdp_adjust_tail_kern.c55 eth->h_proto = orig_eth->h_proto; in swap_mac()
142 __u16 h_proto; in _xdp_icmp() local
147 h_proto = eth->h_proto; in _xdp_icmp()
149 if (h_proto == htons(ETH_P_IP)) in _xdp_icmp()
Dxdp_tx_iptunnel_kern.c70 __be16 h_proto) in set_ethhdr() argument
74 new_eth->h_proto = h_proto; in set_ethhdr()
221 __u16 h_proto; in _xdp_tx_iptunnel() local
226 h_proto = eth->h_proto; in _xdp_tx_iptunnel()
228 if (h_proto == htons(ETH_P_IP)) in _xdp_tx_iptunnel()
230 else if (h_proto == htons(ETH_P_IPV6)) in _xdp_tx_iptunnel()
Dtest_cgrp2_tc_kern.c19 unsigned short h_proto; member
56 if (eth->h_proto != htons(ETH_P_IPV6) || in handle_egress()
59 eth->h_proto, ip6h->nexthdr); in handle_egress()
Dparse_simple.c23 unsigned short h_proto; member
39 if (eth->h_proto != htons(ETH_P_IP)) in handle_ingress()
/Linux-v5.15/tools/testing/selftests/bpf/progs/
Dxdp_redirect_multi_kern.c44 __u16 h_proto; in xdp_redirect_map_multi_prog() local
51 h_proto = eth->h_proto; in xdp_redirect_map_multi_prog()
54 if (h_proto == bpf_htons(ETH_P_IP)) in xdp_redirect_map_multi_prog()
58 else if (h_proto == bpf_htons(ETH_P_IPV6)) in xdp_redirect_map_multi_prog()
Dtest_xdp.c73 __be16 h_proto) in set_ethhdr() argument
77 new_eth->h_proto = h_proto; in set_ethhdr()
219 __u16 h_proto; in _xdp_tx_iptunnel() local
224 h_proto = eth->h_proto; in _xdp_tx_iptunnel()
226 if (h_proto == bpf_htons(ETH_P_IP)) in _xdp_tx_iptunnel()
228 else if (h_proto == bpf_htons(ETH_P_IPV6)) in _xdp_tx_iptunnel()
Dtest_xdp_loop.c69 __be16 h_proto) in set_ethhdr() argument
73 new_eth->h_proto = h_proto; in set_ethhdr()
215 __u16 h_proto; in _xdp_tx_iptunnel() local
220 h_proto = eth->h_proto; in _xdp_tx_iptunnel()
222 if (h_proto == bpf_htons(ETH_P_IP)) in _xdp_tx_iptunnel()
224 else if (h_proto == bpf_htons(ETH_P_IPV6)) in _xdp_tx_iptunnel()
Dtest_pkt_access.c113 if (eth->h_proto == bpf_htons(ETH_P_IP)) { in test_pkt_access()
121 } else if (eth->h_proto == bpf_htons(ETH_P_IPV6)) { in test_pkt_access()
/Linux-v5.15/net/ethernet/
Deth.c85 eth->h_proto = htons(type); in eth_header()
87 eth->h_proto = htons(len); in eth_header()
136 eth->h_proto, sizeof(*eth), in eth_get_headlen()
187 if (likely(eth_proto_is_802_3(eth->h_proto))) in eth_type_trans()
188 return eth->h_proto; in eth_type_trans()
239 eth->h_proto = type; in eth_header_cache()
277 return eth->h_proto; in eth_header_parse_protocol()
436 type = eh->h_proto; in eth_gro_receive()
464 __be16 type = eh->h_proto; in eth_gro_complete()
/Linux-v5.15/tools/testing/selftests/bpf/prog_tests/
Dflow_dissector.c111 .eth.h_proto = __bpf_constant_htons(ETH_P_IP),
132 .eth.h_proto = __bpf_constant_htons(ETH_P_IPV6),
152 .eth.h_proto = __bpf_constant_htons(ETH_P_8021Q),
174 .eth.h_proto = __bpf_constant_htons(ETH_P_8021AD),
197 .eth.h_proto = __bpf_constant_htons(ETH_P_IP),
223 .eth.h_proto = __bpf_constant_htons(ETH_P_IP),
245 .eth.h_proto = __bpf_constant_htons(ETH_P_IPV6),
271 .eth.h_proto = __bpf_constant_htons(ETH_P_IPV6),
293 .eth.h_proto = __bpf_constant_htons(ETH_P_IPV6),
315 .eth.h_proto = __bpf_constant_htons(ETH_P_IPV6),
[all …]
/Linux-v5.15/net/bridge/netfilter/
Debt_log.c90 ntohs(eth_hdr(skb)->h_proto)); in ebt_log_packet()
97 if ((bitmask & EBT_LOG_IP) && eth_hdr(skb)->h_proto == in ebt_log_packet()
114 if ((bitmask & EBT_LOG_IP6) && eth_hdr(skb)->h_proto == in ebt_log_packet()
139 ((eth_hdr(skb)->h_proto == htons(ETH_P_ARP)) || in ebt_log_packet()
140 (eth_hdr(skb)->h_proto == htons(ETH_P_RARP)))) { in ebt_log_packet()
Debt_among.c73 if (eth_hdr(skb)->h_proto == htons(ETH_P_IP)) { in get_ip_dst()
81 } else if (eth_hdr(skb)->h_proto == htons(ETH_P_ARP)) { in get_ip_dst()
104 if (eth_hdr(skb)->h_proto == htons(ETH_P_IP)) { in get_ip_src()
112 } else if (eth_hdr(skb)->h_proto == htons(ETH_P_ARP)) { in get_ip_src()
Dnft_reject_bridge.c32 eth->h_proto = eth_hdr(oldskb)->h_proto; in nft_reject_br_push_etherhdr()
121 switch (eth_hdr(pkt->skb)->h_proto) { in nft_reject_bridge_eval()
/Linux-v5.15/net/hsr/
Dhsr_forward.c50 if (!(eth_hdr->h_proto == htons(ETH_P_PRP) || in is_supervision_frame()
51 eth_hdr->h_proto == htons(ETH_P_HSR))) in is_supervision_frame()
55 if (eth_hdr->h_proto == htons(ETH_P_HSR)) { /* Okay HSRv1. */ in is_supervision_frame()
103 skb->protocol = eth_hdr(skb)->h_proto; in create_stripped_skb_hsr()
189 skb->protocol = eth_hdr(skb)->h_proto; in prp_fill_rct()
227 hsr_ethhdr->hsr_tag.encap_proto = hsr_ethhdr->ethhdr.h_proto; in hsr_fill_tag()
228 hsr_ethhdr->ethhdr.h_proto = htons(proto_version ? in hsr_fill_tag()
230 skb->protocol = hsr_ethhdr->ethhdr.h_proto; in hsr_fill_tag()
546 proto = ethhdr->h_proto; in fill_frame_info()
/Linux-v5.15/drivers/net/wireless/intel/ipw2x00/
Dlibipw_tx.c115 static int libipw_copy_snap(u8 * data, __be16 h_proto) in libipw_copy_snap() argument
125 if (h_proto == htons(ETH_P_AARP) || h_proto == htons(ETH_P_IPX)) in libipw_copy_snap()
133 memcpy(data + SNAP_SIZE, &h_proto, sizeof(u16)); in libipw_copy_snap()
215 if (eth->h_proto != htons(ETH_P_IP)) in libipw_classify()
281 ether_type = ((struct ethhdr *)skb->data)->h_proto; in libipw_xmit()
/Linux-v5.15/drivers/staging/gdm724x/
Dgdm_lte.c117 if (ntohs(((struct ethhdr *)skb_in->data)->h_proto) == ETH_P_8021Q) { in gdm_lte_emulate_arp()
163 skb_out->protocol = ((struct ethhdr *)mac_header_data)->h_proto; in gdm_lte_emulate_arp()
238 if (ntohs(((struct ethhdr *)skb_in->data)->h_proto) == ETH_P_8021Q) { in gdm_lte_emulate_ndp()
246 if (ntohs(eth.h_proto) != ETH_P_IPV6) in gdm_lte_emulate_ndp()
325 skb_out->protocol = ((struct ethhdr *)mac_header_data)->h_proto; in gdm_lte_emulate_ndp()
351 if (ntohs(eth->h_proto) == ETH_P_8021Q) { in gdm_lte_tx_nic_type()
357 mac_proto = ntohs(eth->h_proto); in gdm_lte_tx_nic_type()
642 eth.h_proto = htons(ETH_P_ARP); in gdm_lte_netif_rx()
647 eth.h_proto = htons(ETH_P_IP); in gdm_lte_netif_rx()
650 eth.h_proto = htons(ETH_P_IPV6); in gdm_lte_netif_rx()
[all …]
/Linux-v5.15/drivers/net/usb/
Dlg-vl600.c49 __be16 h_proto; member
176 if (be16_to_cpup(&ethhdr->h_proto) == ETH_P_ARP && in vl600_rx_fixup()
195 ethhdr->h_proto = htons(ETH_P_IPV6); in vl600_rx_fixup()
285 packet->h_proto = htons(ETH_P_IP); in vl600_tx_fixup()
/Linux-v5.15/drivers/staging/rtl8192u/ieee80211/
Dieee80211_tx.c141 static inline int ieee80211_put_snap(u8 *data, u16 h_proto) in ieee80211_put_snap() argument
151 if (h_proto == 0x8137 || h_proto == 0x80f3) in ieee80211_put_snap()
159 *(__be16 *)(data + SNAP_SIZE) = htons(h_proto); in ieee80211_put_snap()
265 if (eth->h_proto != htons(ETH_P_IP)) in ieee80211_classify()
572 ether_type = ntohs(((struct ethhdr *)skb->data)->h_proto); in ieee80211_xmit()
/Linux-v5.15/drivers/net/wireless/ath/ath10k/
Dwow.c120 &old_hdr_pattern->h_proto, in ath10k_wow_convert_8023_to_80211()
121 sizeof(old_hdr_pattern->h_proto)); in ath10k_wow_convert_8023_to_80211()
123 &old_hdr_mask->h_proto, in ath10k_wow_convert_8023_to_80211()
124 sizeof(old_hdr_mask->h_proto)); in ath10k_wow_convert_8023_to_80211()
130 else if (old->pkt_offset < offsetof(struct ethhdr, h_proto)) in ath10k_wow_convert_8023_to_80211()
140 else if (total_len > offsetof(struct ethhdr, h_proto)) in ath10k_wow_convert_8023_to_80211()

123456789