ofproto: Avoid removing rules from meter lists twice.
authorBen Pfaff <blp@nicira.com>
Thu, 29 Aug 2013 23:49:51 +0000 (16:49 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 13 Sep 2013 04:09:18 +0000 (21:09 -0700)
commitfd03f543c7a4364bf8bcb738ca926ed2aaa316b1
tree3688447d2e31f1ac824704b305ce422e36548820
parent8b31942e577a046adfb54c87df140979c3ca7dad
ofproto: Avoid removing rules from meter lists twice.

Since the meter code was introduced, the oftable_remove_rule() function
(recently renamed oftable_remove_rule__()) has had two blocks of code to
remove a rule from its meter's list of rules that reference that meter.
This commit reduces that to one.

Also modifies oftable_remove_rule__() to maintain the invariant that
'rule' is in a meter's list if and only if
!list_is_empty(&rule->meter_list_node).  I don't believe that that fixes
a real bug, but it seems like a good idea.

(This seemed like a serious bug at first, but in fact list_remove() is
idempotent: calling it two times in a row has the same effect as calling
it once.)

Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Jarno Rajahalme <jrajahalme@nicira.com>
ofproto/ofproto.c