X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fip_pipeline%2Fmain.c;h=4944dcfbde27395c70c3283012d9f4b54f3c8181;hb=39aad0e88c583c3e47cdc9729ae801d4769970fe;hp=ef68c8627d8eddff8d3034327291d2b869b8b996;hpb=eb32fe7c557476e936087bc6f835168f8145a2b0;p=dpdk.git diff --git a/examples/ip_pipeline/main.c b/examples/ip_pipeline/main.c index ef68c8627d..4944dcfbde 100644 --- a/examples/ip_pipeline/main.c +++ b/examples/ip_pipeline/main.c @@ -45,12 +45,20 @@ main(int argc, char **argv) app_config_args(&app, argc, argv); - app_config_parse(&app, app.config_file); + app_config_preproc(&app); + + app_config_parse(&app, app.parser_file); app_config_check(&app); /* Init */ app_init(&app); + /* Run-time */ + rte_eal_mp_remote_launch( + app_thread, + (void *) &app, + CALL_MASTER); + return 0; }