Home
last modified time | relevance | path

Searched refs:max_matches (Results 1 – 9 of 9) sorted by relevance

/f-stack/dpdk/drivers/regex/octeontx2/
H A Dotx2_regexdev.c504 info->max_matches = vf->max_matches; in otx2_ree_dev_info_get()
531 if (cfg->nb_max_matches != vf->max_matches) { in otx2_ree_dev_config()
877 uint8_t max_matches = 0; in otx2_ree_pci_probe() local
932 ret = otx2_ree_max_matches_get(dev, &max_matches); in otx2_ree_pci_probe()
938 max_matches = RTE_MIN(max_matches, OTX2_REE_MAX_MATCHES_PER_VF); in otx2_ree_pci_probe()
939 if (max_matches == 0) { in otx2_ree_pci_probe()
944 vf->max_matches = max_matches; in otx2_ree_pci_probe()
946 otx2_ree_dbg("Max matches supported by device: %d", vf->max_matches); in otx2_ree_pci_probe()
H A Dotx2_regexdev_hw_access.c155 otx2_ree_max_matches_get(const struct rte_regexdev *dev, uint8_t *max_matches) in otx2_ree_max_matches_get() argument
165 *max_matches = reexm_max_match.s.max; in otx2_ree_max_matches_get()
H A Dotx2_regexdev.h40 uint16_t max_matches; member
H A Dotx2_regexdev_hw_access.h200 uint8_t *max_matches);
/f-stack/dpdk/app/test-regex/
H A Dmain.c212 *nb_max_matches = info.max_matches; in init_port()
216 dev_conf.nb_max_matches = info.max_matches; in init_port()
/f-stack/dpdk/doc/guides/prog_guide/
H A Dregexdev.rst74 * This value cannot exceed the *max_matches*
77 * @see struct rte_regexdev_info::max_matches
/f-stack/dpdk/lib/librte_regexdev/
H A Drte_regexdev.c262 if (cfg->nb_max_matches > dev_info.max_matches) { in rte_regexdev_configure()
265 dev_info.max_matches); in rte_regexdev_configure()
H A Drte_regexdev.h606 uint16_t max_matches; member
/f-stack/dpdk/drivers/regex/mlx5/
H A Dmlx5_rxp.c114 info->max_matches = MLX5_REGEX_MAX_MATCHES; in mlx5_regex_info_get()