| /freebsd-13.1/sys/contrib/device-tree/Bindings/net/ |
| H A D | renesas,ether.yaml | 4 $id: http://devicetree.org/schemas/net/renesas,ether.yaml# 22 - renesas,ether-r7s72100 # device is a part of R7S72100 SoC 23 - renesas,ether-r7s9210 # device is a part of R7S9210 SoC 26 - renesas,ether-r8a7778 # device is a part of R8A7778 SoC 27 - renesas,ether-r8a7779 # device is a part of R8A7779 SoC 29 - renesas,rcar-gen1-ether # a generic R-Car Gen1 device 32 - renesas,ether-r8a7742 # device is a part of R8A7742 SoC 72 renesas,no-ether-link: 77 renesas,ether-link-active-low: 107 compatible = "renesas,ether-r8a7790", "renesas,rcar-gen2-ether"; [all …]
|
| H A D | socionext,uniphier-ave4.yaml | 50 - const: ether 51 - const: ether-gb 52 - const: ether-phy 53 - const: ether # for others 63 - const: ether 64 - const: ether # for others 91 ether: ethernet@65000000 { 97 clock-names = "ether"; 99 reset-names = "ether";
|
| /freebsd-13.1/tests/sys/net/routing/ |
| H A D | test_rtsock_lladdr.c | 138 struct sockaddr_dl ether; in ATF_TC_BODY() local 140 sa_convert_str_to_sa(str_buf, (struct sockaddr *)ðer); in ATF_TC_BODY() 187 struct sockaddr_dl ether; in ATF_TC_BODY() local 189 sa_convert_str_to_sa(str_buf, (struct sockaddr *)ðer); in ATF_TC_BODY() 238 struct sockaddr_dl ether; in ATF_TC_BODY() local 240 sa_convert_str_to_sa(str_buf, (struct sockaddr *)ðer); in ATF_TC_BODY() 284 struct sockaddr_dl ether; in ATF_TC_BODY() local 286 sa_convert_str_to_sa(str_buf, (struct sockaddr *)ðer); in ATF_TC_BODY() 330 struct sockaddr_dl ether; in ATF_TC_BODY() local 332 sa_convert_str_to_sa(str_buf, (struct sockaddr *)ðer); in ATF_TC_BODY() [all …]
|
| /freebsd-13.1/sbin/ipf/ipsend/ |
| H A D | arp.c | 62 int arp(ip, ether) in arp() argument 64 char *ether; 74 if (arp_getipv4(ip, ether) == 0) 78 bcopy(ethersave, ether, 6); 88 if (!(ether_hostton(hp->h_name, (struct ether_addr *)ether))) 90 if (!(ether_hostton(hp->h_name, ether))) 129 bcopy(ar.arp_ha.sa_data, ether, 6); 131 bcopy(ether, ethersave, 6);
|
| /freebsd-13.1/tests/sys/netgraph/ |
| H A D | ng_macfilter_test.sh | 45 ifconfig -u -l ether | awk '{print $1}' 313 ether=$(genmac $j $i) 315 ngctl msg MF: 'direct' "{ hookname=\"$edge\" ether=$ether }" 337 ether=$(genmac 0 $i) 339 ngctl msg MF: 'direct' "{ hookname=\"$edge\" ether=$ether }" 362 ether=$(genmac $j $i) 364 ngctl msg MF: 'direct' "{ hookname=\"$edge\" ether=$ether }" 382 ether=$(genmac $j $i) 386 echo $ether $edge >> $entries_lst 410 cat $entries_lst | while read ether edge; do [all …]
|
| /freebsd-13.1/sys/netgraph/ |
| H A D | ng_macfilter.c | 381 int d = bcmp(ether, mf_macs[middle].ether, ETHER_ADDR_LEN); in macfilter_find_mac() 409 int found = macfilter_find_mac(mfp, ether, &i); in macfilter_mactable_change() 414 MAC_S_ARGS(ether), found, i, MAC_S_ARGS(mf_macs[i].ether), in macfilter_mactable_change() 446 bcopy(ether, mf_macs[i].ether, ETHER_ADDR_LEN); in macfilter_mactable_change() 497 MAC_S_ARGS(md->ether), md->hookname); in macfilter_direct() 510 MAC_S_ARGS(mdi->ether), mdi->hookid); in macfilter_direct_hookid() 532 u_char *ether = ether_header->ether_dhost; in macfilter_ether_output() local 539 int found = macfilter_find_mac(mfp, ether, &i); in macfilter_ether_output() 555 MAC_S_ARGS(ether), m->m_len - ETHER_HDR_LEN, in macfilter_ether_output() 573 u_char *ether = ether_header->ether_shost; in macfilter_ether_input() local [all …]
|
| H A D | ng_atmllc.c | 55 hook_p ether; member 142 if (priv->ether != NULL) { in ng_atmllc_newhook() 145 priv->ether = hook; in ng_atmllc_newhook() 195 outhook = priv->ether; in ng_atmllc_rcvdata() 199 outhook = priv->ether; in ng_atmllc_rcvdata() 216 } else if (hook == priv->ether) { in ng_atmllc_rcvdata() 273 } else if (hook == priv->ether) { in ng_atmllc_disconnect() 274 priv->ether = NULL; in ng_atmllc_disconnect()
|
| H A D | ng_macfilter.h | 60 u_char ether[ETHER_ADDR_LEN]; /* MAC address */ member 71 u_char ether[ETHER_ADDR_LEN]; /* MAC address */ member 82 u_char ether[ETHER_ADDR_LEN]; /* MAC address */ member
|
| H A D | ng_eiface.c | 88 hook_p ether; /* Hook for ethernet stream */ member 261 NG_SEND_DATA_ONLY(error, priv->ether, m); in ng_eiface_start2() 455 if (priv->ether != NULL) in ng_eiface_newhook() 457 priv->ether = hook; in ng_eiface_newhook() 458 NG_HOOK_SET_PRIVATE(hook, &priv->ether); in ng_eiface_newhook() 642 priv->ether = NULL; in ng_eiface_disconnect()
|
| /freebsd-13.1/tests/sys/netinet/ |
| H A D | forward.sh | 63 jail_mac=`jexec ${jname} ifconfig ${epair}b ether | awk '$1~/ether/{print$2}'` 65 our_mac=`ifconfig ${epair}a ether | awk '$1~/ether/{print$2}'` 120 jail_mac=`jexec ${jname} ifconfig ${epair}b ether | awk '$1~/ether/{print$2}'` 122 our_mac=`ifconfig ${epair}a ether | awk '$1~/ether/{print$2}'` 179 jail_mac=`jexec ${jname} ifconfig ${epair}b ether | awk '$1~/ether/{print$2}'` 181 our_mac=`ifconfig ${epair}a ether | awk '$1~/ether/{print$2}'` 234 jail_mac=`jexec ${jname} ifconfig ${epair}b ether | awk '$1~/ether/{print$2}'` 236 our_mac=`ifconfig ${epair}a ether | awk '$1~/ether/{print$2}'`
|
| /freebsd-13.1/tests/sys/netinet6/ |
| H A D | forward6.sh | 72 jail_mac=`jexec ${jname} ifconfig ${epair}b ether | awk '$1~/ether/{print$2}'` 74 our_mac=`ifconfig ${epair}a ether | awk '$1~/ether/{print$2}'` 143 jail_mac=`jexec ${jname} ifconfig ${epair}b ether | awk '$1~/ether/{print$2}'` 145 our_mac=`ifconfig ${epair}a ether | awk '$1~/ether/{print$2}'` 217 jail_mac=`jexec ${jname} ifconfig ${epair}b ether | awk '$1~/ether/{print$2}'` 219 our_mac=`ifconfig ${epair}a ether | awk '$1~/ether/{print$2}'` 291 jail_mac=`jexec ${jname} ifconfig ${epair}b ether | awk '$1~/ether/{print$2}'` 293 our_mac=`ifconfig ${epair}a ether | awk '$1~/ether/{print$2}'` 361 jail_mac=`jexec ${jname} ifconfig ${epair}b ether | awk '$1~/ether/{print$2}'` 363 our_mac=`ifconfig ${epair}a ether | awk '$1~/ether/{print$2}'` [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm/ |
| H A D | r8a7742-iwg21d-q7-dbcm-ca.dts | 21 ethernet1 = ðer; 30 ðer { 35 renesas,ether-link-active-low; 52 ether_pins: ether {
|
| H A D | r8a7745-sk-rzg1e.dts | 40 ether_pins: ether { 58 ðer { 63 renesas,ether-link-active-low;
|
| H A D | r8a7743-sk-rzg1m.dts | 45 ether_pins: ether { 63 ðer { 68 renesas,ether-link-active-low;
|
| H A D | r7s72100-gr-peach.dts | 72 ether_pins: ether { 122 ðer { 128 renesas,no-ether-link;
|
| H A D | r7s72100-genmai.dts | 63 ether_pins: ether { 102 ðer { 108 renesas,no-ether-link;
|
| H A D | uniphier-pinctrl.dtsi | 59 pinctrl_ether_mii: ether-mii { 64 pinctrl_ether_rgmii: ether-rgmii { 69 pinctrl_ether_rmii: ether-rmii {
|
| H A D | r7s72100-rskrza1.dts | 149 ether_pins: ether { 188 ðer { 192 renesas,no-ether-link;
|
| /freebsd-13.1/share/examples/netgraph/ |
| H A D | virtual.chain | 181 ngctl connect ${PEER1_INTERFACE}: ${PEER2_INTERFACE}: ether ether \ 209 ngctl mkpeer eiface ether ether
|
| H A D | virtual.lan | 202 ngctl mkpeer eiface ether ether 259 ngctl connect ${EIFACE}: ${BRIDGE_NAME}: ether link${LINKNUM} \
|
| /freebsd-13.1/tests/sys/netpfil/common/ |
| H A D | pft_ping.py | 176 ether = sp.Ether() 187 req = ether / ip / icmp / raw 191 ether = sp.Ether() 198 req = ether / ip6 / icmp 240 ether = sp.Ether() 244 req = ether / ip / tcp
|
| H A D | pft_synflood.py | 37 ether = sp.Ether(src='01:02:03:04:05') 41 pkt = ether / ip / tcp
|
| /freebsd-13.1/sys/mips/mediatek/ |
| H A D | std.rt2880 | 79 # ether device support 80 device ether 82 # ether switch support
|
| H A D | std.mediatek | 80 # ether device support 81 device ether 83 # ether switch support
|
| /freebsd-13.1/tests/sys/netpfil/pf/ |
| H A D | pfsync_defer.py | 79 ether = sp.Ether() 84 req = ether / ip / icmp / raw
|