From: Jasvinder Singh Date: Thu, 19 May 2016 14:35:08 +0000 (+0100) Subject: table: remove unnecessary acl dump X-Git-Tag: spdx-start~6821 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=aaa69e5db47275f81ca266049d6fe309d263e547;p=dpdk.git table: remove unnecessary acl dump Removes rte_acl_dump() call from rte_table_acl_build () as it invokes number of printf messages. Signed-off-by: Jasvinder Singh Acked-by: Cristian Dumitrescu --- diff --git a/lib/librte_table/rte_table_acl.c b/lib/librte_table/rte_table_acl.c index c1eb84888f..8f1f8cebc5 100644 --- a/lib/librte_table/rte_table_acl.c +++ b/lib/librte_table/rte_table_acl.c @@ -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; }