| /trueos/sys/ofed/drivers/infiniband/ulp/ipoib/ |
| HD | ipoib_multicast.c | 59 static void ipoib_mcast_free(struct ipoib_mcast *mcast) in ipoib_mcast_free() argument 61 struct ifnet *dev = mcast->priv->dev; in ipoib_mcast_free() 64 ipoib_dbg_mcast(mcast->priv, "deleting multicast group %16D\n", in ipoib_mcast_free() 65 mcast->mcmember.mgid.raw, ":"); in ipoib_mcast_free() 67 if (mcast->ah) in ipoib_mcast_free() 68 ipoib_put_ah(mcast->ah); in ipoib_mcast_free() 70 tx_dropped = mcast->pkt_queue.ifq_len; in ipoib_mcast_free() 71 _IF_DRAIN(&mcast->pkt_queue); /* XXX Locking. */ in ipoib_mcast_free() 75 kfree(mcast); in ipoib_mcast_free() 81 struct ipoib_mcast *mcast; in ipoib_mcast_alloc() local [all …]
|
| /trueos/contrib/apr/network_io/unix/ |
| HD | multicast.c | 29 static void fill_mip_v4(struct ip_mreq *mip, apr_sockaddr_t *mcast, in fill_mip_v4() argument 32 mip->imr_multiaddr = mcast->sa.sin.sin_addr; in fill_mip_v4() 79 static void fill_mip_v6(struct ipv6_mreq *mip, const apr_sockaddr_t *mcast, in fill_mip_v6() argument 82 memcpy(&mip->ipv6mr_multiaddr, mcast->ipaddr_ptr, in fill_mip_v6() 112 apr_sockaddr_t *mcast, apr_sockaddr_t *iface, in do_mcast() argument 147 memcpy(&mip.gsr_group, mcast->ipaddr_ptr, sizeof(mip.gsr_group)); in do_mcast() 162 fill_mip_v4(&mip4, mcast, iface); in do_mcast() 181 fill_mip_v6(&mip6, mcast, iface); in do_mcast()
|
| /trueos/contrib/netbsd-tests/ipf/input/ |
| HD | f25 | 1 [in,hme0]+mcast 31 [in,hme0]+mcast
|
| /trueos/sys/dev/qlxgbe/ |
| HD | ql_hw.c | 2411 if ((ha->hw.mcast[i].addr[0] != 0) || in qla_hw_add_all_mcast() 2412 (ha->hw.mcast[i].addr[1] != 0) || in qla_hw_add_all_mcast() 2413 (ha->hw.mcast[i].addr[2] != 0) || in qla_hw_add_all_mcast() 2414 (ha->hw.mcast[i].addr[3] != 0) || in qla_hw_add_all_mcast() 2415 (ha->hw.mcast[i].addr[4] != 0) || in qla_hw_add_all_mcast() 2416 (ha->hw.mcast[i].addr[5] != 0)) { in qla_hw_add_all_mcast() 2418 if (qla_config_mac_addr(ha, ha->hw.mcast[i].addr, 1)) { in qla_hw_add_all_mcast() 2438 if ((ha->hw.mcast[i].addr[0] != 0) || in qla_hw_del_all_mcast() 2439 (ha->hw.mcast[i].addr[1] != 0) || in qla_hw_del_all_mcast() 2440 (ha->hw.mcast[i].addr[2] != 0) || in qla_hw_del_all_mcast() [all …]
|
| /trueos/sys/dev/qlxge/ |
| HD | qls_hw.c | 1216 if ((ha->mcast[i].addr[0] != 0) || in qls_hw_add_all_mcast() 1217 (ha->mcast[i].addr[1] != 0) || in qls_hw_add_all_mcast() 1218 (ha->mcast[i].addr[2] != 0) || in qls_hw_add_all_mcast() 1219 (ha->mcast[i].addr[3] != 0) || in qls_hw_add_all_mcast() 1220 (ha->mcast[i].addr[4] != 0) || in qls_hw_add_all_mcast() 1221 (ha->mcast[i].addr[5] != 0)) { in qls_hw_add_all_mcast() 1223 if (qls_config_mcast_mac_addr(ha, ha->mcast[i].addr, in qls_hw_add_all_mcast() 1243 if (QL_MAC_CMP(ha->mcast[i].addr, mta) == 0) in qls_hw_add_mcast() 1249 if ((ha->mcast[i].addr[0] == 0) && in qls_hw_add_mcast() 1250 (ha->mcast[i].addr[1] == 0) && in qls_hw_add_mcast() [all …]
|
| HD | qls_def.h | 326 qla_mcast_t mcast[Q8_MAX_NUM_MULTICAST_ADDRS]; member
|
| /trueos/tools/tools/net80211/w00t/expand/ |
| HD | expand.c | 66 char mcast[5]; member 206 memcpy(wh->i_addr3, p->mcast, 5); in send_mcast() 350 (memcmp(wh->i_addr1, p->mcast, 5) == 0) && in read_wifi() 431 memcpy(p.mcast, "\x01\x00\x5e\x00\x00", 5); in main()
|
| /trueos/contrib/netbsd-tests/ipf/expected/ |
| HD | i9 | 15 pass in from any to any with not ipopts,mbcast,not bcast,mcast,not state 16 block in from any to any with not mbcast,bcast,not mcast,state
|
| HD | f25 | 27 2 pass in on hme0 proto udp from any to any with mcast keep state
|
| /trueos/contrib/netbsd-tests/ipf/regress/ |
| HD | f25 | 1 pass in on hme0 proto udp all with mcast keep state
|
| /trueos/sys/ofed/drivers/infiniband/core/ |
| HD | uverbs_cmd.c | 1903 struct ib_uverbs_mcast_entry *mcast; in ib_uverbs_attach_mcast() local 1915 list_for_each_entry(mcast, &obj->mcast_list, list) in ib_uverbs_attach_mcast() 1916 if (cmd.mlid == mcast->lid && in ib_uverbs_attach_mcast() 1917 !memcmp(cmd.gid, mcast->gid.raw, sizeof mcast->gid.raw)) { in ib_uverbs_attach_mcast() 1922 mcast = kmalloc(sizeof *mcast, GFP_KERNEL); in ib_uverbs_attach_mcast() 1923 if (!mcast) { in ib_uverbs_attach_mcast() 1928 mcast->lid = cmd.mlid; in ib_uverbs_attach_mcast() 1929 memcpy(mcast->gid.raw, cmd.gid, sizeof mcast->gid.raw); in ib_uverbs_attach_mcast() 1931 ret = ib_attach_mcast(qp, &mcast->gid, cmd.mlid); in ib_uverbs_attach_mcast() 1933 list_add_tail(&mcast->list, &obj->mcast_list); in ib_uverbs_attach_mcast() [all …]
|
| HD | uverbs_main.c | 185 struct ib_uverbs_mcast_entry *mcast, *tmp; in ib_uverbs_detach_umcast() local 187 list_for_each_entry_safe(mcast, tmp, &uobj->mcast_list, list) { in ib_uverbs_detach_umcast() 188 ib_detach_mcast(qp, &mcast->gid, mcast->lid); in ib_uverbs_detach_umcast() 189 list_del(&mcast->list); in ib_uverbs_detach_umcast() 190 kfree(mcast); in ib_uverbs_detach_umcast()
|
| HD | addr.c | 422 goto mcast; in addr_resolve() 450 mcast: in addr_resolve()
|
| /trueos/sys/xen/interface/io/ |
| HD | netif.h | 141 } mcast; member
|
| /trueos/sys/netinet6/ |
| HD | nd6_rtr.c | 216 int mcast = 0; in nd6_ra_input() local 269 mcast = 1; in nd6_ra_input() 367 (void)prelist_update(&pr, dr, m, mcast); in nd6_ra_input() 966 struct mbuf *m, int mcast) in prelist_update() argument 1253 if ((ia6 = in6_ifadd(new, mcast)) != NULL) { in prelist_update() 1791 in6_ifadd(struct nd_prefixctl *pr, int mcast) in in6_ifadd() argument 1905 if (mcast) in in6_ifadd()
|
| /trueos/sys/contrib/octeon-sdk/ |
| HD | cvmx-pip.h | 492 status->mcast_l2_red_packets = stat10.s.mcast; in cvmx_pip_get_port_status() 494 status->mcast_l3_red_packets = stat11.s.mcast; in cvmx_pip_get_port_status()
|
| HD | cvmx-pip-defs.h | 4610 uint64_t mcast : 32; /**< Number of packets with L2 Mulitcast DMAC member 4619 uint64_t mcast : 32; 4644 uint64_t mcast : 32; /**< Number of packets with L2 Mulitcast DMAC member 4653 uint64_t mcast : 32; 4688 uint64_t mcast : 32; /**< Number of packets with L3 Multicast Dest Address member 4700 uint64_t mcast : 32; 4728 uint64_t mcast : 32; /**< Number of packets with L3 Multicast Dest Address member 4740 uint64_t mcast : 32; 5838 uint64_t mcast : 32; /**< Number of packets with L2 Mulitcast DMAC member 5847 uint64_t mcast : 32; [all …]
|
| HD | cvmx-sriomaintx-defs.h | 3588 uint32_t mcast : 1; /**< Reserved. */ member 3626 uint32_t mcast : 1;
|
| /trueos/sys/ofed/drivers/net/mlx4/ |
| HD | port.c | 584 promisc = be32_to_cpu(qpn_context->mcast) >> in mlx4_common_set_port() 586 qpn_context->mcast = cpu_to_be32( in mlx4_common_set_port() 854 context->mcast = cpu_to_be32(m_promisc << SET_PORT_MC_PROMISC_SHIFT | in mlx4_SET_PORT_qpn_calc()
|
| /trueos/sys/net80211/ |
| HD | ieee80211_proto.h | 400 struct ieee80211_beacon_offsets *, struct mbuf *, int mcast);
|
| HD | ieee80211_output.c | 134 int error, len, mcast; in ieee80211_vap_pkt_send_dest() local 174 mcast = (m->m_flags & (M_MCAST | M_BCAST)) ? 1: 0; in ieee80211_vap_pkt_send_dest() 258 if_inc_counter(ifp, IFCOUNTER_OMCASTS, mcast); in ieee80211_vap_pkt_send_dest() 3068 struct ieee80211_beacon_offsets *bo, struct mbuf *m, int mcast) in ieee80211_beacon_update() argument 3258 if (mcast && tie->tim_count == 0) in ieee80211_beacon_update()
|
| /trueos/sys/dev/bwn/ |
| HD | if_bwnvar.h | 633 struct bwn_dma_ring *mcast; member 667 struct bwn_pio_txqueue mcast; member
|
| /trueos/sys/net/ |
| HD | if_vlan.c | 1029 int error, len, mcast; local 1034 mcast = (m->m_flags & (M_MCAST | M_BCAST)) ? 1 : 0; 1102 ifp->if_omcasts += mcast;
|
| HD | if_lagg.c | 1344 int error, len, mcast; in lagg_transmit() local 1348 mcast = (m->m_flags & (M_MCAST | M_BCAST)) ? 1 : 0; in lagg_transmit() 1367 ifp->if_omcasts += mcast; in lagg_transmit()
|
| /trueos/sys/netinet/ |
| HD | ip_carp.c | 1038 static struct in6_addr mcast = IN6ADDR_LINKLOCAL_ALLNODES_INIT; in carp_send_na() local 1047 nd6_na_output(sc->sc_carpdev, &mcast, in6, in carp_send_na()
|