X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=examples%2Fpipeline%2Fobj.c;h=b79f044ac761654872077121c82a01971798c901;hb=7c0c63c9a53964d40b27da618ab94303f28ea92e;hp=4b2db66c46d96f1b05a47accd198f74225a185dc;hpb=6e4a64c8b37cddfb802b62fe94af69ff53dc9800;p=dpdk.git diff --git a/examples/pipeline/obj.c b/examples/pipeline/obj.c index 4b2db66c46..b79f044ac7 100644 --- a/examples/pipeline/obj.c +++ b/examples/pipeline/obj.c @@ -16,8 +16,6 @@ #include #include #include -#include -#include #include #include @@ -539,20 +537,6 @@ pipeline_create(struct obj *obj, const char *name, int numa_node) if (status) goto error; - status = rte_swx_pipeline_table_type_register(p, - "exact", - RTE_SWX_TABLE_MATCH_EXACT, - &rte_swx_table_exact_match_ops); - if (status) - goto error; - - status = rte_swx_pipeline_table_type_register(p, - "wildcard", - RTE_SWX_TABLE_MATCH_WILDCARD, - &rte_swx_table_wildcard_match_ops); - if (status) - goto error; - /* Node allocation */ pipeline = calloc(1, sizeof(struct pipeline)); if (pipeline == NULL)