Searched refs:old_nb_queues (Results 1 – 6 of 6) sorted by relevance
| /f-stack/dpdk/lib/librte_compressdev/ |
| H A D | rte_compressdev.c | 344 uint16_t old_nb_queues = dev->data->nb_queue_pairs; in rte_compressdev_queue_pairs_config() local 351 for (i = nb_qpairs; i < old_nb_queues; i++) { in rte_compressdev_queue_pairs_config() 366 if (nb_qpairs > old_nb_queues) { in rte_compressdev_queue_pairs_config() 367 uint16_t new_qs = nb_qpairs - old_nb_queues; in rte_compressdev_queue_pairs_config() 369 memset(qp + old_nb_queues, 0, in rte_compressdev_queue_pairs_config()
|
| /f-stack/dpdk/drivers/regex/octeontx2/ |
| H A D | otx2_regexdev.c | 567 uint16_t old_nb_queues = data->nb_queue_pairs; in otx2_ree_dev_config() local 573 for (i = cfg->nb_queue_pairs; i < old_nb_queues; i++) { in otx2_ree_dev_config() 587 if (cfg->nb_queue_pairs > old_nb_queues) { in otx2_ree_dev_config() 588 uint16_t new_qs = cfg->nb_queue_pairs - old_nb_queues; in otx2_ree_dev_config() 589 memset(qp + old_nb_queues, 0, sizeof(qp[0]) * new_qs); in otx2_ree_dev_config()
|
| /f-stack/dpdk/lib/librte_eventdev/ |
| H A D | rte_eventdev.c | 207 uint8_t old_nb_queues = dev->data->nb_queues; in rte_event_dev_queue_config() local 231 for (i = nb_queues; i < old_nb_queues; i++) in rte_event_dev_queue_config() 246 if (nb_queues > old_nb_queues) { in rte_event_dev_queue_config() 247 uint8_t new_qs = nb_queues - old_nb_queues; in rte_event_dev_queue_config() 249 memset(queues_cfg + old_nb_queues, 0, in rte_event_dev_queue_config() 255 for (i = nb_queues; i < old_nb_queues; i++) in rte_event_dev_queue_config()
|
| /f-stack/dpdk/lib/librte_cryptodev/ |
| H A D | rte_cryptodev.c | 874 uint16_t old_nb_queues = dev->data->nb_queue_pairs; in rte_cryptodev_queue_pairs_config() local 881 for (i = nb_qpairs; i < old_nb_queues; i++) { in rte_cryptodev_queue_pairs_config() 895 if (nb_qpairs > old_nb_queues) { in rte_cryptodev_queue_pairs_config() 896 uint16_t new_qs = nb_qpairs - old_nb_queues; in rte_cryptodev_queue_pairs_config() 898 memset(qp + old_nb_queues, 0, in rte_cryptodev_queue_pairs_config()
|
| /f-stack/dpdk/drivers/net/hns3/ |
| H A D | hns3_rxtx.c | 1410 uint16_t old_nb_queues = hw->fkq_data.nb_fake_rx_queues; in hns3_fake_rx_queue_config() local 1427 for (i = nb_queues; i < old_nb_queues; i++) in hns3_fake_rx_queue_config() 1434 if (nb_queues > old_nb_queues) { in hns3_fake_rx_queue_config() 1435 uint16_t new_qs = nb_queues - old_nb_queues; in hns3_fake_rx_queue_config() 1436 memset(rxq + old_nb_queues, 0, sizeof(rxq[0]) * new_qs); in hns3_fake_rx_queue_config() 1442 for (i = nb_queues; i < old_nb_queues; i++) in hns3_fake_rx_queue_config() 1457 uint16_t old_nb_queues = hw->fkq_data.nb_fake_tx_queues; in hns3_fake_tx_queue_config() local 1474 for (i = nb_queues; i < old_nb_queues; i++) in hns3_fake_tx_queue_config() 1480 if (nb_queues > old_nb_queues) { in hns3_fake_tx_queue_config() 1481 uint16_t new_qs = nb_queues - old_nb_queues; in hns3_fake_tx_queue_config() [all …]
|
| /f-stack/dpdk/lib/librte_ethdev/ |
| H A D | rte_ethdev.c | 850 uint16_t old_nb_queues = dev->data->nb_rx_queues; in eth_dev_rx_queue_config() local 867 for (i = nb_queues; i < old_nb_queues; i++) in eth_dev_rx_queue_config() 873 if (nb_queues > old_nb_queues) { in eth_dev_rx_queue_config() 874 uint16_t new_qs = nb_queues - old_nb_queues; in eth_dev_rx_queue_config() 876 memset(rxq + old_nb_queues, 0, in eth_dev_rx_queue_config() 887 for (i = nb_queues; i < old_nb_queues; i++) in eth_dev_rx_queue_config() 1113 for (i = nb_queues; i < old_nb_queues; i++) in eth_dev_tx_queue_config() 1119 if (nb_queues > old_nb_queues) { in eth_dev_tx_queue_config() 1120 uint16_t new_qs = nb_queues - old_nb_queues; in eth_dev_tx_queue_config() 1122 memset(txq + old_nb_queues, 0, in eth_dev_tx_queue_config() [all …]
|