| /linux/include/net/ |
| A D | erspan.h | 146 md2->hwid = hwid & 0xf; in set_hwid() 147 md2->hwid_upper = (hwid >> 4) & 0x3; in set_hwid() 152 return (md2->hwid_upper << 4) + md2->hwid; in get_hwid() 273 struct erspan_md2 *md2; in erspan_build_header_v2() local 312 md2->sgt = htons(sgt); in erspan_build_header_v2() 313 md2->p = 1; in erspan_build_header_v2() 314 md2->ft = 0; in erspan_build_header_v2() 315 md2->dir = direction; in erspan_build_header_v2() 316 md2->gra = gra; in erspan_build_header_v2() 317 md2->o = 0; in erspan_build_header_v2() [all …]
|
| A D | nsh.h | 215 struct nsh_md2_tlv md2; member
|
| /linux/tools/testing/selftests/bpf/progs/ |
| A D | test_tunnel_kern.c | 188 BPF_CORE_WRITE_BITFIELD(&md.u.md2, dir, direction); in erspan_set_tunnel() 189 BPF_CORE_WRITE_BITFIELD(&md.u.md2, hwid, (hwid & 0xf)); in erspan_set_tunnel() 229 BPF_CORE_READ_BITFIELD(&md.u.md2, dir), in erspan_get_tunnel() 230 (BPF_CORE_READ_BITFIELD(&md.u.md2, hwid_upper) << 4) + in erspan_get_tunnel() 231 BPF_CORE_READ_BITFIELD(&md.u.md2, hwid), in erspan_get_tunnel() 232 bpf_ntohl(md.u.md2.timestamp)); in erspan_get_tunnel() 268 BPF_CORE_WRITE_BITFIELD(&md.u.md2, dir, direction); in ip4ip6erspan_set_tunnel() 269 BPF_CORE_WRITE_BITFIELD(&md.u.md2, hwid, (hwid & 0xf)); in ip4ip6erspan_set_tunnel() 310 BPF_CORE_READ_BITFIELD(&md.u.md2, dir), in ip4ip6erspan_get_tunnel() 312 BPF_CORE_READ_BITFIELD(&md.u.md2, hwid), in ip4ip6erspan_get_tunnel() [all …]
|
| /linux/drivers/net/wan/ |
| A D | hd64572.c | 402 md2 |= MD2_LOOPBACK; in sca_set_port() 404 md2 &= ~MD2_LOOPBACK; in sca_set_port() 406 sca_out(md2, msci + MD2, card); in sca_set_port() 414 u8 md0, md2; in sca_open() local 418 md2 = MD2_NRZ; in sca_open() 421 md2 = MD2_NRZI; in sca_open() 424 md2 = MD2_FM_MARK; in sca_open() 427 md2 = MD2_FM_SPACE; in sca_open() 430 md2 = MD2_MANCHESTER; in sca_open() 434 md2 |= MD2_LOOPBACK; in sca_open() [all …]
|
| A D | hd64570.c | 445 md2 |= MD2_LOOPBACK; in sca_set_port() 447 md2 &= ~MD2_LOOPBACK; in sca_set_port() 449 sca_out(md2, msci + MD2, card); in sca_set_port() 457 u8 md0, md2; in sca_open() local 461 md2 = MD2_NRZ; in sca_open() 464 md2 = MD2_NRZI; in sca_open() 467 md2 = MD2_FM_MARK; in sca_open() 470 md2 = MD2_FM_SPACE; in sca_open() 473 md2 = MD2_MANCHESTER; in sca_open() 477 md2 |= MD2_LOOPBACK; in sca_open() [all …]
|
| /linux/tools/include/uapi/linux/ |
| A D | erspan.h | 48 struct erspan_md2 md2; /* Version 2 (type III) */ member
|
| /linux/include/uapi/linux/ |
| A D | erspan.h | 48 struct erspan_md2 md2; /* Version 2 (type III) */ member
|
| /linux/net/netfilter/ |
| A D | nft_tunnel.c | 320 set_hwid(&opts->u.erspan.u.md2, hwid); in nft_tunnel_obj_erspan_init() 321 opts->u.erspan.u.md2.dir = dir; in nft_tunnel_obj_erspan_init() 616 get_hwid(&opts->u.erspan.u.md2)) || in nft_tunnel_opts_dump() 618 opts->u.erspan.u.md2.dir)) in nft_tunnel_opts_dump()
|
| /linux/net/sched/ |
| A D | act_tunnel_key.c | 210 md->u.md2.dir = nla_get_u8(nla); in tunnel_key_copy_erspan_opt() 212 set_hwid(&md->u.md2, nla_get_u8(nla)); in tunnel_key_copy_erspan_opt() 641 md->u.md2.dir) || in tunnel_key_erspan_opts_dump() 643 get_hwid(&md->u.md2)))) in tunnel_key_erspan_opts_dump()
|
| A D | cls_flower.c | 1414 md->u.md2.dir = nla_get_u8(nla); in fl_set_erspan_opt() 1418 set_hwid(&md->u.md2, nla_get_u8(nla)); in fl_set_erspan_opt() 3235 md->u.md2.dir) || in fl_dump_key_erspan_opt() 3237 get_hwid(&md->u.md2)))) in fl_dump_key_erspan_opt()
|
| /linux/net/ipv4/ |
| A D | ip_gre.c | 273 struct erspan_md2 *md2; in erspan_rcv() local 339 md2 = &md->u.md2; in erspan_rcv() 340 memcpy(md2, pkt_md, ver == 1 ? ERSPAN_V1_MDSIZE : in erspan_rcv() 600 md->u.md2.dir, in erspan_fb_xmit() 601 get_hwid(&md->u.md2), in erspan_fb_xmit()
|
| A D | ip_tunnel_core.c | 573 md->u.md2.dir = nla_get_u8(attr); in ip_tun_parse_opts_erspan() 575 set_hwid(&md->u.md2, nla_get_u8(attr)); in ip_tun_parse_opts_erspan() 804 (nla_put_u8(skb, LWTUNNEL_IP_OPT_ERSPAN_DIR, md->u.md2.dir) || in ip_tun_fill_encap_opts_erspan() 806 get_hwid(&md->u.md2)))) in ip_tun_fill_encap_opts_erspan()
|
| /linux/net/ipv6/ |
| A D | ip6_gre.c | 527 struct erspan_md2 *md2; in ip6erspan_rcv() local 580 md2 = &md->u.md2; in ip6erspan_rcv() 581 memcpy(md2, pkt_md, ver == 1 ? ERSPAN_V1_MDSIZE : in ip6erspan_rcv() 1037 md->u.md2.dir, in ip6erspan_tunnel_xmit() 1038 get_hwid(&md->u.md2), in ip6erspan_tunnel_xmit()
|
| /linux/Documentation/netlink/specs/ |
| A D | ovs_flow.yaml | 863 name: md2
|
| /linux/Documentation/admin-guide/ |
| A D | md.rst | 36 2 md2
|
| /linux/arch/arm64/boot/dts/mediatek/ |
| A D | mt8192.dtsi | 2357 md2-thermal {
|
| /linux/net/openvswitch/ |
| A D | flow_netlink.c | 1347 memcpy(&nh->md2, nla_data(a), mdlen); in nsh_hdr_from_nlattr()
|