X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fmac-learning.c;h=ca0ccb8e1f0c8b531b5b8cf8b494ad35d25a21a0;hb=5d9895170f5b066d4cb2984fc5a890478a5b8206;hp=f9b3171cf076ee5b63862fdd8db08fd3eaf97cc6;hpb=03366a2d585a6917d7d94c79073e1e615d8d8025;p=sliver-openvswitch.git diff --git a/lib/mac-learning.c b/lib/mac-learning.c index f9b3171cf..ca0ccb8e1 100644 --- a/lib/mac-learning.c +++ b/lib/mac-learning.c @@ -124,14 +124,31 @@ mac_learning_create(unsigned int idle_time) ml->idle_time = normalize_idle_time(idle_time); ml->max_entries = MAC_DEFAULT_MAX; tag_set_init(&ml->tags); + ml->ref_cnt = 1; return ml; } -/* Destroys MAC learning table 'ml'. */ -void -mac_learning_destroy(struct mac_learning *ml) +struct mac_learning * +mac_learning_ref(const struct mac_learning *ml_) { + struct mac_learning *ml = CONST_CAST(struct mac_learning *, ml_); if (ml) { + ovs_assert(ml->ref_cnt > 0); + ml->ref_cnt++; + } + return ml; +} + +/* Unreferences (and possibly destroys) MAC learning table 'ml'. */ +void +mac_learning_unref(struct mac_learning *ml) +{ + if (!ml) { + return; + } + + ovs_assert(ml->ref_cnt > 0); + if (!--ml->ref_cnt) { struct mac_entry *e, *next; HMAP_FOR_EACH_SAFE (e, next, hmap_node, &ml->table) {