mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 14:25:26 +00:00
classifier: Allow CLS_CURSOR_FOR_EACH to use a const-qualified iterator.
Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Ethan Jackson <ethan@nicira.com>
This commit is contained in:
@@ -500,8 +500,9 @@ cls_cursor_first(struct cls_cursor *cursor)
|
||||
/* Returns the next matching cls_rule in 'cursor''s iteration, or a null
|
||||
* pointer if there are no more matches. */
|
||||
struct cls_rule *
|
||||
cls_cursor_next(struct cls_cursor *cursor, struct cls_rule *rule)
|
||||
cls_cursor_next(struct cls_cursor *cursor, const struct cls_rule *rule_)
|
||||
{
|
||||
struct cls_rule *rule = CONST_CAST(struct cls_rule *, rule_);
|
||||
const struct cls_table *table;
|
||||
struct cls_rule *next;
|
||||
|
||||
|
Reference in New Issue
Block a user