From: Ben Pfaff Date: Thu, 10 Nov 2011 00:24:19 +0000 (-0800) Subject: classifier: Use HMAP_FOR_EACH, HMAP_FOR_EACH_CONTINUE. X-Git-Tag: v1.4.0~165 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=7ac8d8cf183ad547b861588647b2c631a901f19c;p=sliver-openvswitch.git classifier: Use HMAP_FOR_EACH, HMAP_FOR_EACH_CONTINUE. I like how this removes over 20 lines of code and ends up more readable. --- diff --git a/lib/classifier.c b/lib/classifier.c index ab56253c9..26d45fc36 100644 --- a/lib/classifier.c +++ b/lib/classifier.c @@ -32,9 +32,6 @@ static struct cls_table *find_table(const struct classifier *, static struct cls_table *insert_table(struct classifier *, const struct flow_wildcards *); -static struct cls_table *classifier_first_table(const struct classifier *); -static struct cls_table *classifier_next_table(const struct classifier *, - const struct cls_table *); static void destroy_table(struct classifier *, struct cls_table *); static struct cls_rule *find_match(const struct cls_table *, @@ -57,12 +54,6 @@ static bool flow_equal_except(const struct flow *, const struct flow *, static struct cls_rule *next_rule_in_list__(struct cls_rule *); static struct cls_rule *next_rule_in_list(struct cls_rule *); -static struct cls_table * -cls_table_from_hmap_node(const struct hmap_node *node) -{ - return node ? CONTAINER_OF(node, struct cls_table, hmap_node) : NULL; -} - /* Converts the flow in 'flow' into a cls_rule in 'rule', with the given * 'wildcards' and 'priority'. */ void @@ -966,8 +957,7 @@ cls_cursor_first(struct cls_cursor *cursor) { struct cls_table *table; - for (table = classifier_first_table(cursor->cls); table; - table = classifier_next_table(cursor->cls, table)) { + HMAP_FOR_EACH (table, hmap_node, &cursor->cls->tables) { struct cls_rule *rule = search_table(table, cursor->target); if (rule) { cursor->table = table; @@ -1001,8 +991,8 @@ cls_cursor_next(struct cls_cursor *cursor, struct cls_rule *rule) } } - for (table = classifier_next_table(cursor->cls, cursor->table); table; - table = classifier_next_table(cursor->cls, table)) { + table = cursor->table; + HMAP_FOR_EACH_CONTINUE (table, hmap_node, &cursor->cls->tables) { rule = search_table(table, cursor->target); if (rule) { cursor->table = table; @@ -1040,20 +1030,6 @@ insert_table(struct classifier *cls, const struct flow_wildcards *wc) return table; } -static struct cls_table * -classifier_first_table(const struct classifier *cls) -{ - return cls_table_from_hmap_node(hmap_first(&cls->tables)); -} - -static struct cls_table * -classifier_next_table(const struct classifier *cls, - const struct cls_table *table) -{ - return cls_table_from_hmap_node(hmap_next(&cls->tables, - &table->hmap_node)); -} - static void destroy_table(struct classifier *cls, struct cls_table *table) {