table: remove unnecessary acl dump
authorJasvinder Singh <jasvinder.singh@intel.com>
Thu, 19 May 2016 14:35:08 +0000 (15:35 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 7 Jun 2016 20:58:18 +0000 (22:58 +0200)
Removes rte_acl_dump() call from rte_table_acl_build () as it invokes
number of printf messages.

Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
lib/librte_table/rte_table_acl.c

index c1eb848..8f1f8ce 100644 (file)
@@ -236,8 +236,6 @@ rte_table_acl_build(struct rte_table_acl *acl, struct rte_acl_ctx **acl_ctx)
                return -1;
        }
 
-       rte_acl_dump(ctx);
-
        *acl_ctx = ctx;
        return 0;
 }