From 288e8930ee7f1cf4980c06c167ef4e0cdf559528 Mon Sep 17 00:00:00 2001 From: Juraj Sloboda Date: Tue, 6 Dec 2016 21:25:19 +0100 Subject: Make table chain deletion optional in classifier API (VPP-206) Change-Id: If30c0f6d5de34943bc399b3412c2d10847538c3c Signed-off-by: Juraj Sloboda --- plugins/acl-plugin/acl/acl.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/acl-plugin/acl/acl.c b/plugins/acl-plugin/acl/acl.c index 149f006d..6b7f637b 100644 --- a/plugins/acl-plugin/acl/acl.c +++ b/plugins/acl-plugin/acl/acl.c @@ -416,7 +416,8 @@ acl_classify_add_del_table_big (vnet_classify_main_t * cm, u8 * mask, memory_size, skip, match, next_table_index, miss_next_index, table_index, current_data_flag, - current_data_offset, is_add); + current_data_offset, is_add, + 1 /* delete_chain */); } static int @@ -440,7 +441,8 @@ acl_classify_add_del_table_small (vnet_classify_main_t * cm, u8 * mask, memory_size, skip, match, next_table_index, miss_next_index, table_index, current_data_flag, - current_data_offset, is_add); + current_data_offset, is_add, + 1 /* delete_chain */); } -- cgit 1.2.3-korg