examples/ip_pipeline: link routing output ports to devices
[dpdk.git] / examples / ip_pipeline / pipeline / pipeline_routing.c
index c68e470..4d074c1 100644 (file)
@@ -382,8 +382,6 @@ app_pipeline_routing_add_route(struct app_params *app,
                p->n_routes++;
        }
 
-       print_route(entry);
-
        /* Message buffer free */
        app_msg_free(app, rsp);
        return 0;
@@ -676,8 +674,6 @@ app_pipeline_routing_add_arp_entry(struct app_params *app, uint32_t pipeline_id,
                p->n_arp_entries++;
        }
 
-       print_arp_entry(entry);
-
        /* Message buffer free */
        app_msg_free(app, rsp);
        return 0;
@@ -1390,7 +1386,9 @@ static cmdline_parse_ctx_t pipeline_cmds[] = {
 
 static struct pipeline_fe_ops pipeline_routing_fe_ops = {
        .f_init = pipeline_routing_init,
+       .f_post_init = NULL,
        .f_free = app_pipeline_routing_free,
+       .f_track = app_pipeline_track_default,
        .cmds = pipeline_cmds,
 };