acl-plugin: hash lookup bitmask not cleared when ACL is unapplied from interface...
[vpp.git] / src / plugins / acl / hash_lookup_types.h
index 1c04459..837cc0a 100644 (file)
@@ -57,6 +57,10 @@ typedef struct {
    * if ~0 then this is entry in the hash.
    */
   u32 prev_applied_entry_index;
+  /*
+   * chain tail, if this is the first entry
+   */
+  u32 tail_applied_entry_index;
   /*
    * Action of this applied ACE
    */
@@ -69,6 +73,8 @@ typedef struct {
     *                            hash_ace_info_t=>mask_type_index bits set
     */
    uword *mask_type_index_bitmap;
+   /* applied ACLs so we can track them independently from main ACL module */
+   u32 *applied_acls;
 } applied_hash_acl_info_t;