Home
last modified time | relevance | path

Searched refs:rss_type (Results 1 – 14 of 14) sorted by relevance

/dpdk/drivers/net/ice/
H A Dice_hash.c734 uint64_t rss_type) in ice_refine_hash_cfg_l234() argument
767 if (rss_type & in ice_refine_hash_cfg_l234()
795 if (rss_type & in ice_refine_hash_cfg_l234()
854 if (rss_type & in ice_refine_hash_cfg_l234()
874 if (rss_type & in ice_refine_hash_cfg_l234()
894 if (rss_type & in ice_refine_hash_cfg_l234()
1025 if (!(rss_type & in ice_any_invalid_rss_type()
1044 if (rat->attr & rss_type && !(rat->type & rss_type)) in ice_any_invalid_rss_type()
1051 return ((rss_type & allow_rss_type) != rss_type); in ice_any_invalid_rss_type()
1064 uint64_t rss_type; in ice_hash_parse_action() local
[all …]
/dpdk/drivers/net/iavf/
H A Diavf_hash.c923 if (rss_type & in iavf_refine_proto_hdrs_l234()
949 if (rss_type & in iavf_refine_proto_hdrs_l234()
965 if (rss_type & in iavf_refine_proto_hdrs_l234()
1000 if (rss_type & in iavf_refine_proto_hdrs_l234()
1019 if (rss_type & in iavf_refine_proto_hdrs_l234()
1038 if (rss_type & in iavf_refine_proto_hdrs_l234()
1306 if (!(rss_type & in iavf_any_invalid_rss_type()
1324 if (rat->attr & rss_type && !(rat->type & rss_type)) in iavf_any_invalid_rss_type()
1331 return ((rss_type & allow_rss_type) != rss_type); in iavf_any_invalid_rss_type()
1344 uint64_t rss_type; in iavf_hash_parse_action() local
[all …]
/dpdk/drivers/net/hinic/
H A Dhinic_pmd_rx.c502 static void hinic_fill_rss_type(struct nic_rss_type *rss_type, in hinic_fill_rss_type() argument
508 rss_type->tcp_ipv4 = (rss_hf & RTE_ETH_RSS_NONFRAG_IPV4_TCP) ? 1 : 0; in hinic_fill_rss_type()
510 rss_type->ipv6_ext = (rss_hf & RTE_ETH_RSS_IPV6_EX) ? 1 : 0; in hinic_fill_rss_type()
511 rss_type->tcp_ipv6 = (rss_hf & RTE_ETH_RSS_NONFRAG_IPV6_TCP) ? 1 : 0; in hinic_fill_rss_type()
512 rss_type->tcp_ipv6_ext = (rss_hf & RTE_ETH_RSS_IPV6_TCP_EX) ? 1 : 0; in hinic_fill_rss_type()
539 struct nic_rss_type rss_type = {0}; in hinic_rss_init() local
558 hinic_fill_rss_type(&rss_type, rss_conf); in hinic_rss_init()
559 err = hinic_set_rss_type(nic_dev->hwdev, tmpl_idx, rss_type); in hinic_rss_init()
800 uint32_t rss_type; in hinic_rx_rss_hash() local
802 rss_type = HINIC_GET_RSS_TYPES(offload_type); in hinic_rx_rss_hash()
[all …]
H A Dhinic_pmd_ethdev.c1932 struct nic_rss_type rss_type = {0}; in hinic_rss_hash_update() local
1957 rss_type.tcp_ipv4 = (rss_hf & RTE_ETH_RSS_NONFRAG_IPV4_TCP) ? 1 : 0; in hinic_rss_hash_update()
1959 rss_type.ipv6_ext = (rss_hf & RTE_ETH_RSS_IPV6_EX) ? 1 : 0; in hinic_rss_hash_update()
1960 rss_type.tcp_ipv6 = (rss_hf & RTE_ETH_RSS_NONFRAG_IPV6_TCP) ? 1 : 0; in hinic_rss_hash_update()
1961 rss_type.tcp_ipv6_ext = (rss_hf & RTE_ETH_RSS_IPV6_TCP_EX) ? 1 : 0; in hinic_rss_hash_update()
1965 err = hinic_set_rss_type(nic_dev->hwdev, tmpl_idx, rss_type); in hinic_rss_hash_update()
1996 struct nic_rss_type rss_type = {0}; in hinic_rss_conf_get() local
2014 err = hinic_get_rss_type(nic_dev->hwdev, tmpl_idx, &rss_type); in hinic_rss_conf_get()
2019 rss_conf->rss_hf |= rss_type.ipv4 ? in hinic_rss_conf_get()
2022 rss_conf->rss_hf |= rss_type.ipv6 ? in hinic_rss_conf_get()
[all …]
/dpdk/drivers/net/hinic/base/
H A Dhinic_pmd_niccfg.c837 HINIC_RSS_TYPE_SET(rss_type.ipv4, IPV4) | in hinic_set_rss_type()
838 HINIC_RSS_TYPE_SET(rss_type.ipv6, IPV6) | in hinic_set_rss_type()
839 HINIC_RSS_TYPE_SET(rss_type.ipv6_ext, IPV6_EXT) | in hinic_set_rss_type()
840 HINIC_RSS_TYPE_SET(rss_type.tcp_ipv4, TCP_IPV4) | in hinic_set_rss_type()
841 HINIC_RSS_TYPE_SET(rss_type.tcp_ipv6, TCP_IPV6) | in hinic_set_rss_type()
842 HINIC_RSS_TYPE_SET(rss_type.tcp_ipv6_ext, TCP_IPV6_EXT) | in hinic_set_rss_type()
843 HINIC_RSS_TYPE_SET(rss_type.udp_ipv4, UDP_IPV4) | in hinic_set_rss_type()
844 HINIC_RSS_TYPE_SET(rss_type.udp_ipv6, UDP_IPV6); in hinic_set_rss_type()
878 if (!hwdev || !rss_type) { in hinic_get_rss_type()
897 rss_type->ipv4 = HINIC_RSS_TYPE_GET(ctx_tbl.context, IPV4); in hinic_get_rss_type()
[all …]
H A Dhinic_pmd_niccfg.h871 struct nic_rss_type rss_type);
874 struct nic_rss_type *rss_type);
/dpdk/drivers/net/enic/base/
H A Dcq_enet_desc.h133 uint8_t eop, uint8_t sop, uint8_t rss_type, uint8_t csum_not_calc, in cq_enet_rq_desc_enc() argument
151 (((rss_type & CQ_ENET_RQ_DESC_RSS_TYPE_MASK) << in cq_enet_rq_desc_enc()
189 uint8_t *eop, uint8_t *sop, uint8_t *rss_type, uint8_t *csum_not_calc, in cq_enet_rq_desc_dec() argument
218 *rss_type = (uint8_t)((q_number_rss_type_flags >> CQ_DESC_Q_NUM_BITS) & in cq_enet_rq_desc_dec()
/dpdk/app/test-pmd/
H A Dtestpmd.h109 uint64_t rss_type; /**< Type value. */ member
1083 void port_rss_hash_key_update(portid_t port_id, char rss_type[],
H A Dconfig.c1591 rss_type_table[i].rss_type) == in rss_config_display()
1592 rss_type_table[i].rss_type && in rss_config_display()
1593 rss_type_table[i].rss_type != 0) in rss_config_display()
3796 if (rss_type_table[i].rss_type == 0) in port_rss_hash_conf_show()
3798 if ((rss_hf & rss_type_table[i].rss_type) == rss_type_table[i].rss_type) in port_rss_hash_conf_show()
3811 port_rss_hash_key_update(portid_t port_id, char rss_type[], uint8_t *hash_key, in port_rss_hash_key_update() argument
3822 if (!strcmp(rss_type_table[i].str, rss_type)) in port_rss_hash_key_update()
3823 rss_conf.rss_hf = rss_type_table[i].rss_type; in port_rss_hash_key_update()
H A Dcmdline.c2337 cmdline_fixed_string_t rss_type; member
2412 port_rss_hash_key_update(res->port_id, res->rss_type, hash_key, in cmd_config_rss_hash_key_parsed()
2428 TOKEN_STRING_INITIALIZER(struct cmd_config_rss_hash_key, rss_type,
3201 cmdline_fixed_string_t rss_type; member
H A Dcmdline_flow.c7294 action_rss_data->conf.types |= rss_type_table[i].rss_type; in parse_vc_action_rss_type()
/dpdk/drivers/net/atlantic/hw_atl/
H A Dhw_atl_utils.h80 u32 rss_type:4; member
/dpdk/drivers/net/i40e/
H A Di40e_hash.c102 uint64_t rss_type; member
568 if (rss_types & i40e_hash_rss_inset[i].rss_type) in i40e_hash_get_inset()
/dpdk/drivers/net/atlantic/
H A Datl_rxtx.c950 rxd_wb.rss_hash, rxd_wb.rss_type); in atl_recv_pkts()