Home
last modified time | relevance | path

Searched refs:ETH_P_IP (Results 1 – 25 of 419) sorted by relevance

12345678910>>...17

/linux-6.1.9/tools/testing/selftests/bpf/prog_tests/
Dflow_dissector.c115 .eth.h_proto = __bpf_constant_htons(ETH_P_IP),
126 .addr_proto = ETH_P_IP,
128 .n_proto = __bpf_constant_htons(ETH_P_IP),
159 .vlan_proto = __bpf_constant_htons(ETH_P_IP),
170 .addr_proto = ETH_P_IP,
172 .n_proto = __bpf_constant_htons(ETH_P_IP),
205 .eth.h_proto = __bpf_constant_htons(ETH_P_IP),
218 .addr_proto = ETH_P_IP,
220 .n_proto = __bpf_constant_htons(ETH_P_IP),
232 .eth.h_proto = __bpf_constant_htons(ETH_P_IP),
[all …]
/linux-6.1.9/tools/testing/selftests/bpf/progs/
Dtest_tc_tunnel.c241 eth.h_proto = bpf_htons(ETH_P_IP); in __encap_ipv4()
375 if (skb->protocol == __bpf_constant_htons(ETH_P_IP)) in __encap_ipip_none()
376 return encap_ipv4(skb, IPPROTO_IPIP, ETH_P_IP); in __encap_ipip_none()
384 if (skb->protocol == __bpf_constant_htons(ETH_P_IP)) in __encap_gre_none()
385 return encap_ipv4(skb, IPPROTO_GRE, ETH_P_IP); in __encap_gre_none()
393 if (skb->protocol == __bpf_constant_htons(ETH_P_IP)) in __encap_gre_mpls()
402 if (skb->protocol == __bpf_constant_htons(ETH_P_IP)) in __encap_gre_eth()
411 if (skb->protocol == __bpf_constant_htons(ETH_P_IP)) in __encap_udp_none()
412 return encap_ipv4(skb, IPPROTO_UDP, ETH_P_IP); in __encap_udp_none()
420 if (skb->protocol == __bpf_constant_htons(ETH_P_IP)) in __encap_udp_mpls()
[all …]
Dtest_tc_neigh.c93 case __bpf_constant_htons(ETH_P_IP): in tc_dst()
118 case __bpf_constant_htons(ETH_P_IP): in tc_src()
Dbpf_flow.c121 case bpf_htons(ETH_P_IP): in parse_eth_proto()
148 if (keys->n_proto == bpf_htons(ETH_P_IP)) { in _dissect()
186 return parse_eth_proto(skb, bpf_htons(ETH_P_IP)); in parse_ip_proto()
291 keys->addr_proto = ETH_P_IP; in PROG()
/linux-6.1.9/samples/bpf/
Dtc_l2_redirect_kern.c50 if (eth_proto == htons(ETH_P_IP)) in is_vip_addr()
76 if (eth->h_proto == htons(ETH_P_IP)) { in _l2_to_iptun_ingress_forward()
127 if (eth->h_proto == htons(ETH_P_IP)) { in _l2_to_iptun_ingress_redirect()
166 if (eth->h_proto == htons(ETH_P_IP)) { in _l2_to_ip6tun_ingress_redirect()
216 if (eth->h_proto == htons(ETH_P_IP)) { in _drop_non_tun_vip()
Dxdp_fwd_kern.c62 if (h_proto == htons(ETH_P_IP)) { in xdp_fwd_flags()
133 if (h_proto == htons(ETH_P_IP)) in xdp_fwd_flags()
Dsockex3_kern.c53 case ETH_P_IP: in parse_eth_proto()
175 parse_eth_proto(skb, ETH_P_IP); in parse_ip_proto()
272 parse_eth_proto(skb, ETH_P_IP); in PROG()
/linux-6.1.9/include/net/
Dinet_ecn.h175 case cpu_to_be16(ETH_P_IP): in INET_ECN_set_ce()
194 case cpu_to_be16(ETH_P_IP): in skb_get_dsfield()
211 case cpu_to_be16(ETH_P_IP): in INET_ECN_set_ect1()
292 case htons(ETH_P_IP): in IP_ECN_decapsulate()
311 case htons(ETH_P_IP): in IP6_ECN_decapsulate()
Dtun_proto.h20 return htons(ETH_P_IP); in tun_p_to_eth_p()
36 case htons(ETH_P_IP): in tun_p_from_eth_p()
/linux-6.1.9/include/linux/
Dvirtio_net.h14 return protocol == cpu_to_be16(ETH_P_IP); in virtio_net_hdr_match_proto()
18 return protocol == cpu_to_be16(ETH_P_IP) || in virtio_net_hdr_match_proto()
34 skb->protocol = cpu_to_be16(ETH_P_IP); in virtio_net_hdr_set_proto()
122 skb->protocol == htons(ETH_P_IP)) { in virtio_net_hdr_to_skb()
/linux-6.1.9/drivers/net/ethernet/mellanox/mlx5/core/lib/
Dfs_ttc.c68 .etype = ETH_P_IP,
76 .etype = ETH_P_IP,
84 .etype = ETH_P_IP,
92 .etype = ETH_P_IP,
100 .etype = ETH_P_IP,
115 .etype = ETH_P_IP,
123 .etype = ETH_P_IP,
131 .etype = ETH_P_IP,
182 if (ethertype == ETH_P_IP) in mlx5_etype_to_ipv()
/linux-6.1.9/tools/testing/selftests/net/bpf/
Dnat6to4.c92 eth2.h_proto = bpf_htons(ETH_P_IP); // But replace the ethertype in sched_cls_ingress6_nat_6_prog()
130 if (bpf_skb_change_proto(skb, bpf_htons(ETH_P_IP), 0)) in sched_cls_ingress6_nat_6_prog()
159 if (skb->protocol != bpf_htons(ETH_P_IP)) in sched_cls_egress4_snat4_prog()
167 if (eth->h_proto != bpf_htons(ETH_P_IP)) in sched_cls_egress4_snat4_prog()
/linux-6.1.9/net/tipc/
Dudp_media.c108 if (ntohs(addr->proto) == ETH_P_IP) in tipc_udp_is_mcast_addr()
134 if (ntohs(ua->proto) == ETH_P_IP) in tipc_udp_addr2str()
176 if (dst->proto == htons(ETH_P_IP)) { in tipc_udp_xmit()
320 if (ntohs(addr->proto) == ETH_P_IP) in tipc_udp_rcast_add()
345 src.proto = htons(ETH_P_IP); in tipc_udp_rcast_disc()
411 if (ntohs(remote->proto) == ETH_P_IP) { in enable_mcast()
429 if (ntohs(addr->proto) == ETH_P_IP) { in __tipc_nl_add_udp_addr()
591 addr->proto = htons(ETH_P_IP); in tipc_parse_udp_addr()
726 if (local.proto == htons(ETH_P_IP)) { in tipc_udp_enable()
/linux-6.1.9/drivers/net/arcnet/
Drfc1051.c107 return htons(ETH_P_IP); in type_trans()
117 return htons(ETH_P_IP); in type_trans()
170 case ETH_P_IP: in build_header()
/linux-6.1.9/tools/testing/selftests/net/
Dpsock_snd.c109 tag[1] = htons(ETH_P_IP); in build_eth_header()
113 eth->h_proto = htons(ETH_P_IP); in build_eth_header()
175 laddr.sll_protocol = htons(ETH_P_IP); in do_bind()
202 laddr.sll_protocol = htons(ETH_P_IP); in do_send()
Dtxring_overwrite.c51 eth->h_proto = htons(ETH_P_IP); in build_packet()
79 fdr = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_IP)); in setup_rx()
/linux-6.1.9/net/batman-adv/
Dmulticast.c205 if (!br_multicast_has_router_adjacent(dev, ETH_P_IP)) in batadv_mcast_mla_rtr_flags_bridge_get()
273 qr4->exists = br_multicast_has_querier_anywhere(dev, ETH_P_IP); in batadv_mcast_mla_flags_get()
274 qr4->shadowing = br_multicast_has_querier_adjacent(dev, ETH_P_IP); in batadv_mcast_mla_flags_get()
531 if (src->proto == htons(ETH_P_IP)) in batadv_mcast_mla_br_addr_cpy()
574 if (br_ip_entry->addr.proto == htons(ETH_P_IP)) { in batadv_mcast_mla_bridge_get()
981 *is_routable = ETH_P_IP; in batadv_mcast_forw_mode_check_ipv4()
1076 case ETH_P_IP: in batadv_mcast_forw_mode_check()
1106 case ETH_P_IP: in batadv_mcast_forw_want_all_ip_count()
1130 case ETH_P_IP: in batadv_mcast_forw_rtr_count()
1223 case ETH_P_IP: in batadv_mcast_forw_ip_node_get()
[all …]
/linux-6.1.9/drivers/net/ethernet/netronome/nfp/abm/
Dcls.c68 case htons(ETH_P_IP): in nfp_abm_u32_check_knode()
182 tos_off = proto == htons(ETH_P_IP) ? 16 : 20; in nfp_abm_u32_knode_replace()
244 if (cls_u32->common.protocol != htons(ETH_P_IP) && in nfp_abm_setup_tc_block_cb()
/linux-6.1.9/drivers/net/ethernet/sfc/falcon/
Dfilter.h187 spec->ether_type = htons(ETH_P_IP); in ef4_filter_set_ipv4_local()
212 spec->ether_type = htons(ETH_P_IP); in ef4_filter_set_ipv4_full()
/linux-6.1.9/net/802/
Dfddi.c55 if(type != ETH_P_IP && type != ETH_P_IPV6 && type != ETH_P_ARP) in fddi_header()
59 if(type == ETH_P_IP || type == ETH_P_IPV6 || type == ETH_P_ARP) in fddi_header()
/linux-6.1.9/drivers/net/ethernet/sfc/siena/
Dfilter.h213 spec->ether_type = htons(ETH_P_IP); in efx_filter_set_ipv4_local()
238 spec->ether_type = htons(ETH_P_IP); in efx_filter_set_ipv4_full()
/linux-6.1.9/drivers/net/wireless/intel/iwlwifi/mei/
Dnet.c96 arp->ar_pro != htons(ETH_P_IP)) in iwl_mei_rx_filter_arp()
309 case htons(ETH_P_IP): in iwl_mei_rx_pass_to_csme()
379 if (origskb->protocol != htons(ETH_P_IP) || in iwl_mei_tx_copy_to_csme()
/linux-6.1.9/drivers/infiniband/sw/rxe/
Drxe_icrc.c82 (skb->protocol == htons(ETH_P_IP) ? in rxe_icrc_hdr()
96 if (skb->protocol == htons(ETH_P_IP)) { /* IPv4 */ in rxe_icrc_hdr()
/linux-6.1.9/net/netfilter/
Dnft_chain_filter.c171 case htons(ETH_P_IP): in nft_do_chain_inet_ingress()
240 case htons(ETH_P_IP): in nft_do_chain_bridge()
295 case htons(ETH_P_IP): in nft_do_chain_netdev()
/linux-6.1.9/drivers/net/ethernet/mellanox/mlx5/core/en_accel/
Den_accel.h64 case htons(ETH_P_IP): in mlx5e_tx_tunnel_accel()
84 swp_spec.tun_l3_proto = htons(ETH_P_IP); in mlx5e_tx_tunnel_accel()

12345678910>>...17