Home
last modified time | relevance | path

Searched refs:bpf_ntohl (Results 1 – 17 of 17) sorted by relevance

/openbmc/linux/samples/bpf/
H A Dtcp_synrto_kern.c33 if (bpf_ntohl(skops->remote_port) != 55601 && in bpf_synrto()
54 (bpf_ntohl(skops->local_ip6[1]) & 0xfff00000) == in bpf_synrto()
55 (bpf_ntohl(skops->remote_ip6[1]) & 0xfff00000)) in bpf_synrto()
H A Dtcp_rwnd_kern.c33 if (bpf_ntohl(skops->remote_port) != in bpf_rwnd()
54 (bpf_ntohl(skops->local_ip6[1]) & 0xfffff000) != in bpf_rwnd()
55 (bpf_ntohl(skops->remote_ip6[1]) & 0xfffff000)) in bpf_rwnd()
H A Dtcp_cong_kern.c34 if (bpf_ntohl(skops->remote_port) != 55601 && in bpf_cong()
52 (bpf_ntohl(skops->local_ip6[1]) & 0xfff00000) == in bpf_cong()
53 (bpf_ntohl(skops->remote_ip6[1]) & 0xfff00000)) { in bpf_cong()
H A Dtcp_clamp_kern.c37 if (bpf_ntohl(skops->remote_port) != 55601 && skops->local_port != 55601) { in bpf_clamp()
54 (bpf_ntohl(skops->local_ip6[1]) & 0xfff00000) == in bpf_clamp()
55 (bpf_ntohl(skops->remote_ip6[1]) & 0xfff00000)) { in bpf_clamp()
H A Dtcp_basertt_kern.c44 (bpf_ntohl(skops->local_ip6[1]) & 0xfff00000) == in bpf_basertt()
45 (bpf_ntohl(skops->remote_ip6[1]) & 0xfff00000)) { in bpf_basertt()
H A Dtcp_bufs_kern.c36 if (bpf_ntohl(skops->remote_port) != 55601 && in bpf_bufs()
H A Dtcp_iw_kern.c37 if (bpf_ntohl(skops->remote_port) != 55601 && in bpf_iw()
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dtest_tunnel_kern.c245 index = bpf_ntohl(md.u.index); in erspan_get_tunnel()
251 bpf_ntohl(md.u.md2.timestamp)); in erspan_get_tunnel()
325 index = bpf_ntohl(md.u.index); in ip4ip6erspan_get_tunnel()
331 bpf_ntohl(md.u.md2.timestamp)); in ip4ip6erspan_get_tunnel()
585 if (bpf_ntohl(key.local_ipv6[3]) != *local_ip || in ip6vxlan_get_tunnel_src()
589 key.tunnel_id, bpf_ntohl(key.local_ipv6[3]), in ip6vxlan_get_tunnel_src()
590 bpf_ntohl(key.remote_ipv6[3]), key.tunnel_label, in ip6vxlan_get_tunnel_src()
977 x.reqid, bpf_ntohl(x.spi), in xfrm_get_state()
978 bpf_ntohl(x.remote_ipv4)); in xfrm_get_state()
H A Dtest_lwt_reroute.c27 skb->mark = bpf_ntohl(iph->daddr) & 0xff; in test_lwt_reroute()
H A Dtest_lwt_redirect.c37 return bpf_ntohl(iph->daddr) & 0xff; in get_redirect_target()
H A Dtest_tcpnotify_kern.c39 if (bpf_ntohl(skops->remote_port) != TESTPORT) { in bpf_testcb()
H A Dtest_btf_skc_cls_ingress.c64 recv_cookie = bpf_ntohl(th->ack_seq) - 1; in test_syncookie_helper()
H A Dtest_tcp_check_syncookie_kern.c142 __u32 cookie = bpf_ntohl(tcph->ack_seq) - 1; in check_syncookie()
H A Dtest_sockmap_kern.h218 if (bpf_ntohl(rport) == 10001) { in bpf_sockmap()
H A Dxdp_synproxy_kern.c523 tcp_header->ack_seq = bpf_htonl(bpf_ntohl(tcp_header->seq) + 1); in tcp_gen_synack()
/openbmc/linux/tools/testing/selftests/bpf/
H A Dtest_sysctl.c696 bpf_ntohl(0x36303600), 2),
785 bpf_ntohl(0x36300000), 2),
808 bpf_ntohl(0x36303000)),
877 bpf_ntohl(0x36303000)),
991 bpf_ntohl(0x36303000)),
1024 bpf_ntohl(0x30373700)),
1068 bpf_ntohl(0x36303000)),
1109 bpf_ntohl(0x0d0c0a09)),
1151 bpf_ntohl(0x0a2d3600)),
1193 bpf_ntohl(0x0a2d3600)),
[all …]
/openbmc/linux/tools/lib/bpf/
H A Dbpf_endian.h89 #define bpf_ntohl(x) \ macro