Lines Matching defs:graph_conf
861 graph_config_mcore_dispatch(struct rte_graph_param graph_conf)
863 uint16_t nb_patterns = graph_conf.nb_node_patterns;
885 graph_conf.node_patterns[nb_patterns + n_rx_node + i] = node_name;
895 graph_conf.nb_node_patterns = nb_patterns + n_rx_node;
896 graph_conf.socket_id = rte_lcore_to_socket_id(main_lcore_id);
903 main_graph_id = rte_graph_create(qconf->name, &graph_conf);
938 graph_id = rte_graph_clone(main_graph_id, qconf->name, &graph_conf);
957 graph_config_rtc(struct rte_graph_param graph_conf)
959 uint16_t nb_patterns = graph_conf.nb_node_patterns;
975 graph_conf.node_patterns[nb_patterns + i] =
978 graph_conf.nb_node_patterns = nb_patterns + i;
979 graph_conf.socket_id = rte_lcore_to_socket_id(lcore_id);
982 graph_id = rte_graph_create(qconf->name, &graph_conf);
1009 struct rte_graph_param graph_conf;
1297 memset(&graph_conf, 0, sizeof(graph_conf));
1298 graph_conf.node_patterns = node_patterns;
1299 graph_conf.nb_node_patterns = nb_patterns;
1302 graph_conf.pcap_enable = pcap_trace_enable;
1303 graph_conf.num_pkt_to_capture = packet_to_capture;
1304 graph_conf.pcap_filename = pcap_filename;
1307 graph_config_mcore_dispatch(graph_conf);
1309 graph_config_rtc(graph_conf);