4 * Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #ifndef __INCLUDE_APP_H__
35 #define __INCLUDE_APP_H__
40 #include <rte_common.h>
41 #include <rte_mempool.h>
43 #include <rte_sched.h>
44 #include <cmdline_parse.h>
46 #include <rte_ethdev.h>
48 #include "cpu_core_map.h"
51 #define APP_PARAM_NAME_SIZE PIPELINE_NAME_SIZE
53 struct app_mempool_params {
59 uint32_t cpu_socket_id;
62 struct app_link_params {
65 uint32_t pmd_id; /* Generated based on port mask */
66 uint32_t arp_q; /* 0 = Disabled (packets go to default queue 0) */
67 uint32_t tcp_syn_local_q; /* 0 = Disabled (pkts go to default queue) */
68 uint32_t ip_local_q; /* 0 = Disabled (pkts go to default queue 0) */
69 uint32_t tcp_local_q; /* 0 = Disabled (pkts go to default queue 0) */
70 uint32_t udp_local_q; /* 0 = Disabled (pkts go to default queue 0) */
71 uint32_t sctp_local_q; /* 0 = Disabled (pkts go to default queue 0) */
72 uint32_t state; /* DOWN = 0, UP = 1 */
73 uint32_t ip; /* 0 = Invalid */
74 uint32_t depth; /* Valid only when IP is valid */
75 uint64_t mac_addr; /* Read from HW */
77 struct rte_eth_conf conf;
81 struct app_pktq_hwq_in_params {
84 uint32_t mempool_id; /* Position in the app->mempool_params */
88 struct rte_eth_rxconf conf;
91 struct app_pktq_hwq_out_params {
98 struct rte_eth_txconf conf;
101 struct app_pktq_swq_params {
106 uint32_t burst_write;
109 uint32_t cpu_socket_id;
115 uint32_t metadata_size;
116 uint32_t mempool_direct_id;
117 uint32_t mempool_indirect_id;
120 #ifndef APP_FILE_NAME_SIZE
121 #define APP_FILE_NAME_SIZE 256
124 #ifndef APP_MAX_SCHED_SUBPORTS
125 #define APP_MAX_SCHED_SUBPORTS 8
128 #ifndef APP_MAX_SCHED_PIPES
129 #define APP_MAX_SCHED_PIPES 4096
132 struct app_pktq_tm_params {
135 const char *file_name;
136 struct rte_sched_port_params sched_port_params;
137 struct rte_sched_subport_params
138 sched_subport_params[APP_MAX_SCHED_SUBPORTS];
139 struct rte_sched_pipe_params
140 sched_pipe_profiles[RTE_SCHED_PIPE_PROFILES_PER_PORT];
141 int sched_pipe_to_profile[APP_MAX_SCHED_SUBPORTS * APP_MAX_SCHED_PIPES];
143 uint32_t burst_write;
146 struct app_pktq_source_params {
149 uint32_t mempool_id; /* Position in the app->mempool_params array */
153 struct app_pktq_sink_params {
158 struct app_msgq_params {
162 uint32_t cpu_socket_id;
165 enum app_pktq_in_type {
172 struct app_pktq_in_params {
173 enum app_pktq_in_type type;
174 uint32_t id; /* Position in the appropriate app array */
177 enum app_pktq_out_type {
184 struct app_pktq_out_params {
185 enum app_pktq_out_type type;
186 uint32_t id; /* Position in the appropriate app array */
189 #ifndef APP_PIPELINE_TYPE_SIZE
190 #define APP_PIPELINE_TYPE_SIZE 64
193 #define APP_MAX_PIPELINE_PKTQ_IN PIPELINE_MAX_PORT_IN
194 #define APP_MAX_PIPELINE_PKTQ_OUT PIPELINE_MAX_PORT_OUT
195 #define APP_MAX_PIPELINE_MSGQ_IN PIPELINE_MAX_MSGQ_IN
196 #define APP_MAX_PIPELINE_MSGQ_OUT PIPELINE_MAX_MSGQ_OUT
198 #define APP_MAX_PIPELINE_ARGS PIPELINE_MAX_ARGS
200 struct app_pipeline_params {
204 char type[APP_PIPELINE_TYPE_SIZE];
208 uint32_t hyper_th_id;
210 struct app_pktq_in_params pktq_in[APP_MAX_PIPELINE_PKTQ_IN];
211 struct app_pktq_out_params pktq_out[APP_MAX_PIPELINE_PKTQ_OUT];
212 uint32_t msgq_in[APP_MAX_PIPELINE_MSGQ_IN];
213 uint32_t msgq_out[APP_MAX_PIPELINE_MSGQ_OUT];
220 uint32_t timer_period;
222 char *args_name[APP_MAX_PIPELINE_ARGS];
223 char *args_value[APP_MAX_PIPELINE_ARGS];
227 struct app_pipeline_data {
230 uint64_t timer_period;
233 struct app_thread_pipeline_data {
235 pipeline_be_op_run f_run;
236 pipeline_be_op_timer f_timer;
237 uint64_t timer_period;
241 #ifndef APP_MAX_THREAD_PIPELINES
242 #define APP_MAX_THREAD_PIPELINES 16
245 struct app_thread_data {
246 struct app_thread_pipeline_data regular[APP_MAX_THREAD_PIPELINES];
247 struct app_thread_pipeline_data custom[APP_MAX_THREAD_PIPELINES];
255 struct app_eal_params {
256 /* Map lcore set to physical cpu set */
259 /* Core ID that is used as master */
260 uint32_t master_lcore_present;
261 uint32_t master_lcore;
263 /* Number of memory channels */
264 uint32_t channels_present;
267 /* Memory to allocate (see also --socket-mem) */
268 uint32_t memory_present;
271 /* Force number of memory ranks (don't detect) */
272 uint32_t ranks_present;
275 /* Add a PCI device in black list. */
278 /* Add a PCI device in white list. */
281 /* Add a virtual device. */
284 /* Use VMware TSC map instead of native RDTSC */
285 uint32_t vmware_tsc_map_present;
288 /* Type of this process (primary|secondary|auto) */
291 /* Set syslog facility */
294 /* Set default log level */
295 uint32_t log_level_present;
298 /* Display version information on startup */
299 uint32_t version_present;
303 uint32_t help_present;
306 /* Use malloc instead of hugetlbfs */
307 uint32_t no_huge_present;
311 uint32_t no_pci_present;
315 uint32_t no_hpet_present;
318 /* No shared config (mmap'd files) */
319 uint32_t no_shconf_present;
325 /* Memory to allocate on sockets (comma separated values)*/
328 /* Directory where hugetlbfs is mounted */
331 /* Prefix for hugepage filenames */
334 /* Base virtual address */
337 /* Create /dev/uioX (usually done by hotplug) */
338 uint32_t create_uio_dev_present;
341 /* Interrupt mode for VFIO (legacy|msi|msix) */
344 /* Support running on Xen dom0 without hugetlbfs */
345 uint32_t xen_dom0_present;
349 #ifndef APP_APPNAME_SIZE
350 #define APP_APPNAME_SIZE 256
353 #ifndef APP_MAX_MEMPOOLS
354 #define APP_MAX_MEMPOOLS 8
357 #ifndef APP_MAX_LINKS
358 #define APP_MAX_LINKS 16
361 #ifndef APP_LINK_MAX_HWQ_IN
362 #define APP_LINK_MAX_HWQ_IN 64
365 #ifndef APP_LINK_MAX_HWQ_OUT
366 #define APP_LINK_MAX_HWQ_OUT 64
369 #define APP_MAX_HWQ_IN (APP_MAX_LINKS * APP_LINK_MAX_HWQ_IN)
371 #define APP_MAX_HWQ_OUT (APP_MAX_LINKS * APP_LINK_MAX_HWQ_OUT)
373 #ifndef APP_MAX_PKTQ_SWQ
374 #define APP_MAX_PKTQ_SWQ 256
377 #define APP_MAX_PKTQ_TM APP_MAX_LINKS
379 #ifndef APP_MAX_PKTQ_SOURCE
380 #define APP_MAX_PKTQ_SOURCE 16
383 #ifndef APP_MAX_PKTQ_SINK
384 #define APP_MAX_PKTQ_SINK 16
388 #define APP_MAX_MSGQ 64
391 #ifndef APP_MAX_PIPELINES
392 #define APP_MAX_PIPELINES 64
396 #define APP_EAL_ARGC 32
399 #ifndef APP_MAX_PIPELINE_TYPES
400 #define APP_MAX_PIPELINE_TYPES 64
403 #ifndef APP_MAX_THREADS
404 #define APP_MAX_THREADS RTE_MAX_LCORE
408 #define APP_MAX_CMDS 64
413 char app_name[APP_APPNAME_SIZE];
414 const char *config_file;
415 const char *script_file;
416 const char *parser_file;
417 const char *output_file;
419 const char *preproc_args;
423 struct app_eal_params eal_params;
424 struct app_mempool_params mempool_params[APP_MAX_MEMPOOLS];
425 struct app_link_params link_params[APP_MAX_LINKS];
426 struct app_pktq_hwq_in_params hwq_in_params[APP_MAX_HWQ_IN];
427 struct app_pktq_hwq_out_params hwq_out_params[APP_MAX_HWQ_OUT];
428 struct app_pktq_swq_params swq_params[APP_MAX_PKTQ_SWQ];
429 struct app_pktq_tm_params tm_params[APP_MAX_PKTQ_TM];
430 struct app_pktq_source_params source_params[APP_MAX_PKTQ_SOURCE];
431 struct app_pktq_sink_params sink_params[APP_MAX_PKTQ_SINK];
432 struct app_msgq_params msgq_params[APP_MAX_MSGQ];
433 struct app_pipeline_params pipeline_params[APP_MAX_PIPELINES];
437 uint32_t n_pktq_hwq_in;
438 uint32_t n_pktq_hwq_out;
441 uint32_t n_pktq_source;
442 uint32_t n_pktq_sink;
444 uint32_t n_pipelines;
447 char *eal_argv[1 + APP_EAL_ARGC];
448 struct cpu_core_map *core_map;
450 struct rte_mempool *mempool[APP_MAX_MEMPOOLS];
451 struct rte_ring *swq[APP_MAX_PKTQ_SWQ];
452 struct rte_sched_port *tm[APP_MAX_PKTQ_TM];
453 struct rte_ring *msgq[APP_MAX_MSGQ];
454 struct pipeline_type pipeline_type[APP_MAX_PIPELINE_TYPES];
455 struct app_pipeline_data pipeline_data[APP_MAX_PIPELINES];
456 struct app_thread_data thread_data[APP_MAX_THREADS];
457 cmdline_parse_ctx_t cmds[APP_MAX_CMDS + 1];
460 uint32_t n_pipeline_types;
464 #define APP_PARAM_VALID(obj) ((obj)->name != NULL)
466 #define APP_PARAM_COUNT(obj_array, n_objs) \
471 for (i = 0; i < RTE_DIM(obj_array); i++) \
472 if (APP_PARAM_VALID(&((obj_array)[i]))) \
476 #define APP_PARAM_FIND(obj_array, key) \
479 const ssize_t obj_count = RTE_DIM(obj_array); \
481 for (obj_idx = 0; obj_idx < obj_count; obj_idx++) { \
482 if (!APP_PARAM_VALID(&((obj_array)[obj_idx]))) \
485 if (strcmp(key, (obj_array)[obj_idx].name) == 0) \
488 obj_idx < obj_count ? obj_idx : -ENOENT; \
491 #define APP_PARAM_FIND_BY_ID(obj_array, prefix, id, obj) \
493 char name[APP_PARAM_NAME_SIZE]; \
496 sprintf(name, prefix "%" PRIu32, id); \
497 pos = APP_PARAM_FIND(obj_array, name); \
498 obj = (pos < 0) ? NULL : &((obj_array)[pos]); \
501 #define APP_PARAM_GET_ID(obj, prefix, id) \
503 sscanf(obj->name, prefix "%" SCNu32, &id); \
506 #define APP_PARAM_ADD(obj_array, obj_name) \
509 const ssize_t obj_count = RTE_DIM(obj_array); \
511 obj_idx = APP_PARAM_FIND(obj_array, obj_name); \
513 for (obj_idx = 0; obj_idx < obj_count; obj_idx++) { \
514 if (!APP_PARAM_VALID(&((obj_array)[obj_idx]))) \
518 if (obj_idx < obj_count) { \
519 (obj_array)[obj_idx].name = strdup(obj_name); \
520 if ((obj_array)[obj_idx].name == NULL) \
528 #define APP_CHECK(exp, fmt, ...) \
531 fprintf(stderr, fmt "\n", ## __VA_ARGS__); \
537 APP_LOG_LEVEL_HIGH = 1,
542 #define APP_LOG(app, level, fmt, ...) \
544 if (app->log_level >= APP_LOG_LEVEL_ ## level) \
545 fprintf(stdout, "[APP] " fmt "\n", ## __VA_ARGS__); \
548 static inline uint32_t
549 app_link_get_n_rxq(struct app_params *app, struct app_link_params *link)
551 uint32_t n_rxq = 0, link_id, i;
552 uint32_t n_pktq_hwq_in = RTE_MIN(app->n_pktq_hwq_in,
553 RTE_DIM(app->hwq_in_params));
555 APP_PARAM_GET_ID(link, "LINK", link_id);
557 for (i = 0; i < n_pktq_hwq_in; i++) {
558 struct app_pktq_hwq_in_params *p = &app->hwq_in_params[i];
559 uint32_t rxq_link_id, rxq_queue_id;
561 sscanf(p->name, "RXQ%" SCNu32 ".%" SCNu32,
562 &rxq_link_id, &rxq_queue_id);
563 if (rxq_link_id == link_id)
570 static inline uint32_t
571 app_link_get_n_txq(struct app_params *app, struct app_link_params *link)
573 uint32_t n_txq = 0, link_id, i;
574 uint32_t n_pktq_hwq_out = RTE_MIN(app->n_pktq_hwq_out,
575 RTE_DIM(app->hwq_out_params));
577 APP_PARAM_GET_ID(link, "LINK", link_id);
579 for (i = 0; i < n_pktq_hwq_out; i++) {
580 struct app_pktq_hwq_out_params *p = &app->hwq_out_params[i];
581 uint32_t txq_link_id, txq_queue_id;
583 sscanf(p->name, "TXQ%" SCNu32 ".%" SCNu32,
584 &txq_link_id, &txq_queue_id);
585 if (txq_link_id == link_id)
592 static inline uint32_t
593 app_rxq_get_readers(struct app_params *app, struct app_pktq_hwq_in_params *rxq)
595 uint32_t pos = rxq - app->hwq_in_params;
596 uint32_t n_pipelines = RTE_MIN(app->n_pipelines,
597 RTE_DIM(app->pipeline_params));
598 uint32_t n_readers = 0, i;
600 for (i = 0; i < n_pipelines; i++) {
601 struct app_pipeline_params *p = &app->pipeline_params[i];
602 uint32_t n_pktq_in = RTE_MIN(p->n_pktq_in, RTE_DIM(p->pktq_in));
605 for (j = 0; j < n_pktq_in; j++) {
606 struct app_pktq_in_params *pktq = &p->pktq_in[j];
608 if ((pktq->type == APP_PKTQ_IN_HWQ) &&
617 static inline uint32_t
618 app_swq_get_readers(struct app_params *app, struct app_pktq_swq_params *swq)
620 uint32_t pos = swq - app->swq_params;
621 uint32_t n_pipelines = RTE_MIN(app->n_pipelines,
622 RTE_DIM(app->pipeline_params));
623 uint32_t n_readers = 0, i;
625 for (i = 0; i < n_pipelines; i++) {
626 struct app_pipeline_params *p = &app->pipeline_params[i];
627 uint32_t n_pktq_in = RTE_MIN(p->n_pktq_in, RTE_DIM(p->pktq_in));
630 for (j = 0; j < n_pktq_in; j++) {
631 struct app_pktq_in_params *pktq = &p->pktq_in[j];
633 if ((pktq->type == APP_PKTQ_IN_SWQ) &&
642 static inline uint32_t
643 app_tm_get_readers(struct app_params *app, struct app_pktq_tm_params *tm)
645 uint32_t pos = tm - app->tm_params;
646 uint32_t n_pipelines = RTE_MIN(app->n_pipelines,
647 RTE_DIM(app->pipeline_params));
648 uint32_t n_readers = 0, i;
650 for (i = 0; i < n_pipelines; i++) {
651 struct app_pipeline_params *p = &app->pipeline_params[i];
652 uint32_t n_pktq_in = RTE_MIN(p->n_pktq_in, RTE_DIM(p->pktq_in));
655 for (j = 0; j < n_pktq_in; j++) {
656 struct app_pktq_in_params *pktq = &p->pktq_in[j];
658 if ((pktq->type == APP_PKTQ_IN_TM) &&
667 static inline uint32_t
668 app_source_get_readers(struct app_params *app,
669 struct app_pktq_source_params *source)
671 uint32_t pos = source - app->source_params;
672 uint32_t n_pipelines = RTE_MIN(app->n_pipelines,
673 RTE_DIM(app->pipeline_params));
674 uint32_t n_readers = 0, i;
676 for (i = 0; i < n_pipelines; i++) {
677 struct app_pipeline_params *p = &app->pipeline_params[i];
678 uint32_t n_pktq_in = RTE_MIN(p->n_pktq_in, RTE_DIM(p->pktq_in));
681 for (j = 0; j < n_pktq_in; j++) {
682 struct app_pktq_in_params *pktq = &p->pktq_in[j];
684 if ((pktq->type == APP_PKTQ_IN_SOURCE) &&
693 static inline uint32_t
694 app_msgq_get_readers(struct app_params *app, struct app_msgq_params *msgq)
696 uint32_t pos = msgq - app->msgq_params;
697 uint32_t n_pipelines = RTE_MIN(app->n_pipelines,
698 RTE_DIM(app->pipeline_params));
699 uint32_t n_readers = 0, i;
701 for (i = 0; i < n_pipelines; i++) {
702 struct app_pipeline_params *p = &app->pipeline_params[i];
703 uint32_t n_msgq_in = RTE_MIN(p->n_msgq_in, RTE_DIM(p->msgq_in));
706 for (j = 0; j < n_msgq_in; j++)
707 if (p->msgq_in[j] == pos)
714 static inline uint32_t
715 app_txq_get_writers(struct app_params *app, struct app_pktq_hwq_out_params *txq)
717 uint32_t pos = txq - app->hwq_out_params;
718 uint32_t n_pipelines = RTE_MIN(app->n_pipelines,
719 RTE_DIM(app->pipeline_params));
720 uint32_t n_writers = 0, i;
722 for (i = 0; i < n_pipelines; i++) {
723 struct app_pipeline_params *p = &app->pipeline_params[i];
724 uint32_t n_pktq_out = RTE_MIN(p->n_pktq_out,
725 RTE_DIM(p->pktq_out));
728 for (j = 0; j < n_pktq_out; j++) {
729 struct app_pktq_out_params *pktq = &p->pktq_out[j];
731 if ((pktq->type == APP_PKTQ_OUT_HWQ) &&
740 static inline uint32_t
741 app_swq_get_writers(struct app_params *app, struct app_pktq_swq_params *swq)
743 uint32_t pos = swq - app->swq_params;
744 uint32_t n_pipelines = RTE_MIN(app->n_pipelines,
745 RTE_DIM(app->pipeline_params));
746 uint32_t n_writers = 0, i;
748 for (i = 0; i < n_pipelines; i++) {
749 struct app_pipeline_params *p = &app->pipeline_params[i];
750 uint32_t n_pktq_out = RTE_MIN(p->n_pktq_out,
751 RTE_DIM(p->pktq_out));
754 for (j = 0; j < n_pktq_out; j++) {
755 struct app_pktq_out_params *pktq = &p->pktq_out[j];
757 if ((pktq->type == APP_PKTQ_OUT_SWQ) &&
766 static inline uint32_t
767 app_tm_get_writers(struct app_params *app, struct app_pktq_tm_params *tm)
769 uint32_t pos = tm - app->tm_params;
770 uint32_t n_pipelines = RTE_MIN(app->n_pipelines,
771 RTE_DIM(app->pipeline_params));
772 uint32_t n_writers = 0, i;
774 for (i = 0; i < n_pipelines; i++) {
775 struct app_pipeline_params *p = &app->pipeline_params[i];
776 uint32_t n_pktq_out = RTE_MIN(p->n_pktq_out,
777 RTE_DIM(p->pktq_out));
780 for (j = 0; j < n_pktq_out; j++) {
781 struct app_pktq_out_params *pktq = &p->pktq_out[j];
783 if ((pktq->type == APP_PKTQ_OUT_TM) &&
792 static inline uint32_t
793 app_sink_get_writers(struct app_params *app, struct app_pktq_sink_params *sink)
795 uint32_t pos = sink - app->sink_params;
796 uint32_t n_pipelines = RTE_MIN(app->n_pipelines,
797 RTE_DIM(app->pipeline_params));
798 uint32_t n_writers = 0, i;
800 for (i = 0; i < n_pipelines; i++) {
801 struct app_pipeline_params *p = &app->pipeline_params[i];
802 uint32_t n_pktq_out = RTE_MIN(p->n_pktq_out,
803 RTE_DIM(p->pktq_out));
806 for (j = 0; j < n_pktq_out; j++) {
807 struct app_pktq_out_params *pktq = &p->pktq_out[j];
809 if ((pktq->type == APP_PKTQ_OUT_SINK) &&
818 static inline uint32_t
819 app_msgq_get_writers(struct app_params *app, struct app_msgq_params *msgq)
821 uint32_t pos = msgq - app->msgq_params;
822 uint32_t n_pipelines = RTE_MIN(app->n_pipelines,
823 RTE_DIM(app->pipeline_params));
824 uint32_t n_writers = 0, i;
826 for (i = 0; i < n_pipelines; i++) {
827 struct app_pipeline_params *p = &app->pipeline_params[i];
828 uint32_t n_msgq_out = RTE_MIN(p->n_msgq_out,
829 RTE_DIM(p->msgq_out));
832 for (j = 0; j < n_msgq_out; j++)
833 if (p->msgq_out[j] == pos)
840 static inline struct app_link_params *
841 app_get_link_for_rxq(struct app_params *app, struct app_pktq_hwq_in_params *p)
843 char link_name[APP_PARAM_NAME_SIZE];
844 ssize_t link_param_idx;
845 uint32_t rxq_link_id, rxq_queue_id;
847 sscanf(p->name, "RXQ%" SCNu32 ".%" SCNu32,
848 &rxq_link_id, &rxq_queue_id);
849 sprintf(link_name, "LINK%" PRIu32, rxq_link_id);
850 link_param_idx = APP_PARAM_FIND(app->link_params, link_name);
851 APP_CHECK((link_param_idx >= 0),
852 "Cannot find %s for %s", link_name, p->name);
854 return &app->link_params[link_param_idx];
857 static inline struct app_link_params *
858 app_get_link_for_txq(struct app_params *app, struct app_pktq_hwq_out_params *p)
860 char link_name[APP_PARAM_NAME_SIZE];
861 ssize_t link_param_idx;
862 uint32_t txq_link_id, txq_queue_id;
864 sscanf(p->name, "TXQ%" SCNu32 ".%" SCNu32,
865 &txq_link_id, &txq_queue_id);
866 sprintf(link_name, "LINK%" PRIu32, txq_link_id);
867 link_param_idx = APP_PARAM_FIND(app->link_params, link_name);
868 APP_CHECK((link_param_idx >= 0),
869 "Cannot find %s for %s", link_name, p->name);
871 return &app->link_params[link_param_idx];
874 static inline struct app_link_params *
875 app_get_link_for_tm(struct app_params *app, struct app_pktq_tm_params *p_tm)
877 char link_name[APP_PARAM_NAME_SIZE];
879 ssize_t link_param_idx;
881 sscanf(p_tm->name, "TM%" PRIu32, &link_id);
882 sprintf(link_name, "LINK%" PRIu32, link_id);
883 link_param_idx = APP_PARAM_FIND(app->link_params, link_name);
884 APP_CHECK((link_param_idx >= 0),
885 "Cannot find %s for %s", link_name, p_tm->name);
887 return &app->link_params[link_param_idx];
890 int app_config_init(struct app_params *app);
892 int app_config_args(struct app_params *app,
893 int argc, char **argv);
895 int app_config_preproc(struct app_params *app);
897 int app_config_parse(struct app_params *app,
898 const char *file_name);
900 int app_config_parse_tm(struct app_params *app);
902 void app_config_save(struct app_params *app,
903 const char *file_name);
905 int app_config_check(struct app_params *app);
907 int app_init(struct app_params *app);
909 int app_thread(void *arg);
911 int app_pipeline_type_register(struct app_params *app,
912 struct pipeline_type *ptype);
914 struct pipeline_type *app_pipeline_type_find(struct app_params *app,
917 void app_link_up_internal(struct app_params *app,
918 struct app_link_params *cp);
920 void app_link_down_internal(struct app_params *app,
921 struct app_link_params *cp);