diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2018-03-27 11:27:10 +0200 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2018-05-25 15:49:38 +0200 |
commit | be2028d19bddcef6c973c29de40d4a5d6be6765b (patch) | |
tree | acac20ebdba40442cbb931e5c0213d8e2a3ee592 /zebra/zebra_ns.c | |
parent | Merge pull request #2279 from donaldsharp/evpn_moo_moo (diff) | |
download | frr-be2028d19bddcef6c973c29de40d4a5d6be6765b.tar.xz frr-be2028d19bddcef6c973c29de40d4a5d6be6765b.zip |
zebra: rework pbr ipset entry
Add ns_id into zebra_pbr ipset
This is important so that each ipset entry knows on which NETNS the
ipset entry must be inkected
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'zebra/zebra_ns.c')
-rw-r--r-- | zebra/zebra_ns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_ns.c b/zebra/zebra_ns.c index 5c62e366a..4526a1487 100644 --- a/zebra/zebra_ns.c +++ b/zebra/zebra_ns.c @@ -262,10 +262,10 @@ int zebra_ns_disable(ns_id_t ns_id, void **info) hash_clean(zns->rules_hash, zebra_pbr_rules_free); hash_free(zns->rules_hash); - hash_clean(zns->ipset_hash, zebra_pbr_ipset_free); - hash_free(zns->ipset_hash); hash_clean(zns->ipset_entry_hash, zebra_pbr_ipset_entry_free), + hash_clean(zns->ipset_hash, zebra_pbr_ipset_free); + hash_free(zns->ipset_hash); hash_free(zns->ipset_entry_hash); hash_clean(zns->iptable_hash, zebra_pbr_iptable_free); |