| /f-stack/dpdk/drivers/net/mlx4/ |
| H A D | mlx4_flow.h | 42 uint32_t allmulti:1; /**< This rule matches all multicast traffic. */ member
|
| H A D | mlx4_flow.c | 225 flow->allmulti = 1; in mlx4_flow_merge_eth() 238 if (flow->allmulti) { in mlx4_flow_merge_eth() 716 if (flow->promisc || flow->allmulti) { in mlx4_flow_prepare() 1468 if (flow->allmulti) in mlx4_flow_internal() 1497 MLX4_ASSERT(flow->promisc || flow->allmulti); in mlx4_flow_internal()
|
| /f-stack/dpdk/lib/librte_kni/ |
| H A D | rte_kni_common.h | 49 uint8_t allmulti; /**< 1: all-multicast mode enable, 0: disable */ member
|
| H A D | rte_kni.c | 583 kni->ops.port_id, req->allmulti); in rte_kni_handle_request() 586 kni->ops.port_id, req->allmulti); in rte_kni_handle_request()
|
| /f-stack/dpdk/drivers/net/enic/ |
| H A D | enic_vf_representor.c | 500 1 /* bcast */, vf->promisc, vf->allmulti); in set_vf_packet_filter() 537 vf->allmulti = 1; in enic_vf_allmulticast_enable() 550 vf->allmulti = 0; in enic_vf_allmulticast_disable() 633 vf->allmulti = 1; in enic_vf_representor_init()
|
| H A D | enic.h | 132 int allmulti; member 239 int allmulti; member
|
| H A D | enic_ethdev.c | 611 enic->allmulti = 1; in enicpmd_dev_allmulticast_enable() 614 enic->allmulti = 0; in enicpmd_dev_allmulticast_enable() 628 enic->allmulti = 0; in enicpmd_dev_allmulticast_disable() 631 enic->allmulti = 1; in enicpmd_dev_allmulticast_disable()
|
| H A D | enic_main.c | 1315 enic->allmulti = 0; in enic_setup_finish() 1327 enic->allmulti = 1; in enic_setup_finish() 1450 enic->promisc, enic->allmulti); in enic_add_packet_filter()
|
| /f-stack/dpdk/drivers/net/enic/base/ |
| H A D | vnic_dev.h | 126 int broadcast, int promisc, int allmulti); 128 int multicast, int broadcast, int promisc, int allmulti);
|
| H A D | vnic_dev.c | 861 int broadcast, int promisc, int allmulti) in vnic_dev_packet_filter() argument 871 (allmulti ? CMD_PFILTER_ALL_MULTICAST : 0); in vnic_dev_packet_filter()
|
| /f-stack/dpdk/drivers/net/sfc/ |
| H A D | sfc_port.c | 241 port->allmulti = (sa->eth_dev->data->all_multicast != 0) ? in sfc_port_start() 498 return port->promisc || port->allmulti; in sfc_get_requested_all_mcast()
|
| H A D | sfc.h | 123 boolean_t allmulti; member
|
| H A D | sfc_ethdev.c | 400 boolean_t allmulti = (mode == SFC_DEV_FILTER_MODE_ALLMULTI); in sfc_dev_filter_set() local 401 const char *desc = (allmulti) ? "all-multi" : "promiscuous"; in sfc_dev_filter_set() 407 toggle = (allmulti) ? (&port->allmulti) : (&port->promisc); in sfc_dev_filter_set()
|
| H A D | sfc_rx.c | 749 if (port->allmulti) { in sfc_rx_default_rxq_set_filter() 754 port->allmulti = B_FALSE; in sfc_rx_default_rxq_set_filter()
|
| /f-stack/dpdk/kernel/linux/kni/ |
| H A D | kni_net.c | 672 req.allmulti = 1; in kni_net_change_rx_flags() 674 req.allmulti = 0; in kni_net_change_rx_flags()
|
| /f-stack/dpdk/drivers/net/hns3/ |
| H A D | hns3_ethdev_vf.c | 624 bool allmulti = dev->data->all_multicast ? true : false; in hns3vf_dev_promiscuous_disable() local 629 ret = hns3vf_set_promisc_mode(hw, true, false, allmulti); in hns3vf_dev_promiscuous_disable() 674 bool allmulti = hw->data->all_multicast ? true : false; in hns3vf_restore_promisc() local 679 return hns3vf_set_promisc_mode(hw, true, false, allmulti); in hns3vf_restore_promisc()
|
| H A D | hns3_ethdev.c | 4140 bool allmulti = dev->data->all_multicast ? true : false; in hns3_dev_promiscuous_enable() local 4167 err = hns3_set_promisc_mode(hw, false, allmulti); in hns3_dev_promiscuous_enable() 4184 bool allmulti = dev->data->all_multicast ? true : false; in hns3_dev_promiscuous_disable() local 4193 ret = hns3_set_promisc_mode(hw, false, allmulti); in hns3_dev_promiscuous_disable() 4266 bool allmulti = hw->data->all_multicast ? true : false; in hns3_dev_promisc_restore() local 4277 ret = hns3_set_promisc_mode(hw, false, allmulti); in hns3_dev_promisc_restore()
|
| /f-stack/dpdk/drivers/net/hinic/ |
| H A D | hinic_pmd_ethdev.c | 2481 goto allmulti; in hinic_set_mc_addr_list() 2489 goto allmulti; in hinic_set_mc_addr_list() 2497 allmulti: in hinic_set_mc_addr_list()
|
| /f-stack/dpdk/doc/guides/howto/ |
| H A D | vfd.rst | 323 set vf allmulti 0 0 on|off
|
| /f-stack/dpdk/doc/guides/prog_guide/ |
| H A D | kernel_nic_interface.rst | 241 For example, when the user runs ``ifconfig <ifaceX> [-]allmulti``. If the
|
| /f-stack/dpdk/doc/guides/nics/ |
| H A D | tap.rst | 54 packets will be redirected. In allmulti mode, all multicast packets will be
|
| H A D | bnxt.rst | 283 testpmd> set allmulti (port_id) (on|off)
|
| /f-stack/dpdk/drivers/net/bonding/ |
| H A D | rte_eth_bond_pmd.c | 294 const uint8_t allmulti = rte_eth_allmulticast_get(internals->port_id); in rx_burst_8023ad() local 348 (!allmulti && in rx_burst_8023ad()
|
| /f-stack/dpdk/drivers/net/bnxt/ |
| H A D | bnxt_ethdev.c | 2617 goto allmulti; in bnxt_dev_set_mc_addr_list_op() 2634 allmulti: in bnxt_dev_set_mc_addr_list_op()
|
| /f-stack/dpdk/doc/guides/testpmd_app_ug/ |
| H A D | testpmd_funcs.rst | 1439 set allmulti 1442 Set the allmulti mode for a port or for all ports:: 1444 testpmd> set allmulti (port_id|all) (on|off) 1464 testpmd> set vf allmulti (port_id) (vf_id) (on|off)
|