Lines Matching refs:lcore_conf
134 struct lcore_conf { struct
156 struct lcore_conf *lconf; argument
519 struct lcore_conf *lcore_conf, in lcore_conf_init() argument
526 struct lcore_conf *lconf; in lcore_conf_init()
534 lconf = &lcore_conf[lcore_id]; in lcore_conf_init()
694 run_encoding(struct lcore_conf *lcore_conf) in run_encoding() argument
708 lcore_stats = lcore_conf->lcore_stats; in run_encoding()
709 port_id = lcore_conf->port_id; in run_encoding()
710 rx_queue_id = lcore_conf->rx_queue_id; in run_encoding()
711 bbdev_id = lcore_conf->bbdev_id; in run_encoding()
712 enc_queue_id = lcore_conf->enc_queue_id; in run_encoding()
713 bbdev_op_pool = lcore_conf->bbdev_enc_op_pool; in run_encoding()
714 enc_out_pool = lcore_conf->enc_out_pool; in run_encoding()
715 enc_to_dec_ring = lcore_conf->enc_to_dec_ring; in run_encoding()
825 run_decoding(struct lcore_conf *lcore_conf) in run_decoding() argument
838 lcore_stats = lcore_conf->lcore_stats; in run_decoding()
839 port_id = lcore_conf->port_id; in run_decoding()
840 tx_queue_id = lcore_conf->tx_queue_id; in run_decoding()
841 bbdev_id = lcore_conf->bbdev_id; in run_decoding()
842 bbdev_queue_id = lcore_conf->dec_queue_id; in run_decoding()
843 bbdev_op_pool = lcore_conf->bbdev_dec_op_pool; in run_decoding()
844 enc_to_dec_ring = lcore_conf->enc_to_dec_ring; in run_decoding()
845 llr_temp_buf = lcore_conf->llr_temp_buf; in run_decoding()
925 struct lcore_conf *lcore_conf = arg; in processing_loop() local
926 const bool run_encoder = (lcore_conf->core_type & in processing_loop()
928 const bool run_decoder = (lcore_conf->core_type & in processing_loop()
933 run_encoding(lcore_conf); in processing_loop()
935 run_decoding(lcore_conf); in processing_loop()
1052 struct lcore_conf lcore_conf[RTE_MAX_LCORE] = { {0} }; in main() local
1166 lcore_conf_init(&app_params, lcore_conf, bbdev_op_pools, in main()
1170 stats_lcore.lconf = lcore_conf; in main()
1173 if (lcore_conf[lcore_id].core_type != 0) in main()
1176 &lcore_conf[lcore_id], lcore_id); in main()
1186 lcore_conf[main_lcore_id].core_type != 0) in main()
1189 else if (lcore_conf[main_lcore_id].core_type != 0) in main()
1190 processing_loop(&lcore_conf[main_lcore_id]); in main()