diff options
author | Juraj Sloboda <jsloboda@cisco.com> | 2016-12-06 21:25:19 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2016-12-07 09:42:18 +0000 |
commit | 288e8930ee7f1cf4980c06c167ef4e0cdf559528 (patch) | |
tree | 1078c0a14d6545729bdcadbf5bba1a2b07294b6a /plugins/acl-plugin | |
parent | 32575801c97073285771a26d076876ea88bfbdf8 (diff) |
Make table chain deletion optional in classifier API (VPP-206)
Change-Id: If30c0f6d5de34943bc399b3412c2d10847538c3c
Signed-off-by: Juraj Sloboda <jsloboda@cisco.com>
Diffstat (limited to 'plugins/acl-plugin')
-rw-r--r-- | plugins/acl-plugin/acl/acl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/acl-plugin/acl/acl.c b/plugins/acl-plugin/acl/acl.c index 149f006d46c..6b7f637b1d3 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 */); } |