Lines Matching refs:lcore_conf

132 struct lcore_conf {  struct
154 struct lcore_conf *lconf; argument
512 struct lcore_conf *lcore_conf, in lcore_conf_init() argument
519 struct lcore_conf *lconf; in lcore_conf_init()
527 lconf = &lcore_conf[lcore_id]; in lcore_conf_init()
687 run_encoding(struct lcore_conf *lcore_conf) in run_encoding() argument
701 lcore_stats = lcore_conf->lcore_stats; in run_encoding()
702 port_id = lcore_conf->port_id; in run_encoding()
703 rx_queue_id = lcore_conf->rx_queue_id; in run_encoding()
704 bbdev_id = lcore_conf->bbdev_id; in run_encoding()
705 enc_queue_id = lcore_conf->enc_queue_id; in run_encoding()
706 bbdev_op_pool = lcore_conf->bbdev_enc_op_pool; in run_encoding()
707 enc_out_pool = lcore_conf->enc_out_pool; in run_encoding()
708 enc_to_dec_ring = lcore_conf->enc_to_dec_ring; in run_encoding()
818 run_decoding(struct lcore_conf *lcore_conf) in run_decoding() argument
831 lcore_stats = lcore_conf->lcore_stats; in run_decoding()
832 port_id = lcore_conf->port_id; in run_decoding()
833 tx_queue_id = lcore_conf->tx_queue_id; in run_decoding()
834 bbdev_id = lcore_conf->bbdev_id; in run_decoding()
835 bbdev_queue_id = lcore_conf->dec_queue_id; in run_decoding()
836 bbdev_op_pool = lcore_conf->bbdev_dec_op_pool; in run_decoding()
837 enc_to_dec_ring = lcore_conf->enc_to_dec_ring; in run_decoding()
838 llr_temp_buf = lcore_conf->llr_temp_buf; in run_decoding()
918 struct lcore_conf *lcore_conf = arg; in processing_loop() local
919 const bool run_encoder = (lcore_conf->core_type & in processing_loop()
921 const bool run_decoder = (lcore_conf->core_type & in processing_loop()
926 run_encoding(lcore_conf); in processing_loop()
928 run_decoding(lcore_conf); in processing_loop()
1045 struct lcore_conf lcore_conf[RTE_MAX_LCORE] = { {0} }; in main() local
1159 lcore_conf_init(&app_params, lcore_conf, bbdev_op_pools, in main()
1163 stats_lcore.lconf = lcore_conf; in main()
1166 if (lcore_conf[lcore_id].core_type != 0) in main()
1169 &lcore_conf[lcore_id], lcore_id); in main()
1179 lcore_conf[main_lcore_id].core_type != 0) in main()
1182 else if (lcore_conf[main_lcore_id].core_type != 0) in main()
1183 processing_loop(&lcore_conf[main_lcore_id]); in main()