diff options
author | Alberto Rodriguez-Natal <natal@cisco.com> | 2017-09-09 14:15:15 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-09-19 06:29:05 +0000 |
commit | 8d66f9d3f83a419fde67efbb2ee8697038922b7a (patch) | |
tree | ac4587c7c83d79158d9b6a9242e01ad002350749 /src/vnet/lisp-cp/control.h | |
parent | b2bcad6238b7e8a669ae29c74079eb9bb9fbb694 (diff) |
Remove associated lisp-gpe entries when removing lisp local mapping.
Change-Id: Ifda4d22c9d1de210165932a0996f75cc8428ae7a
Signed-off-by: Alberto Rodriguez-Natal <natal@cisco.com>
Diffstat (limited to 'src/vnet/lisp-cp/control.h')
-rw-r--r-- | src/vnet/lisp-cp/control.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vnet/lisp-cp/control.h b/src/vnet/lisp-cp/control.h index a3e2fc2510a..12bfcb5194e 100644 --- a/src/vnet/lisp-cp/control.h +++ b/src/vnet/lisp-cp/control.h @@ -180,6 +180,12 @@ typedef struct /* hash map of forwarding entries by mapping index */ u32 *fwd_entry_by_mapping_index; + /* pool of vectors of rmts per lcl mapping in adjacencies */ + u32 **lcl_to_rmt_adjacencies; + + /* hash of pool positions of vectors of rmts by lcl mapping index */ + u32 *lcl_to_rmt_adjs_by_lcl_idx; + /* forwarding entries pool */ fwd_entry_t *fwd_entry_pool; |