X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fip_pipeline%2Fmain.c;h=4944dcfbde27395c70c3283012d9f4b54f3c8181;hb=99c12dcca65d;hp=a2d7ef0936572f23dfee75fd3fd7a2e2e6a08c21;hpb=7f64b9c004aa39d50fd5ee254b399e4267a5aa5d;p=dpdk.git diff --git a/examples/ip_pipeline/main.c b/examples/ip_pipeline/main.c index a2d7ef0936..4944dcfbde 100644 --- a/examples/ip_pipeline/main.c +++ b/examples/ip_pipeline/main.c @@ -45,7 +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; }