]> git.puffer.fish Git - mirror/frr.git/commitdiff
libs: nexthop comparison includes labels if present 4065/head
authorMark Stapp <mjs@voltanet.io>
Tue, 2 Apr 2019 16:33:06 +0000 (12:33 -0400)
committerMark Stapp <mjs@voltanet.io>
Wed, 3 Apr 2019 08:25:21 +0000 (04:25 -0400)
Adjust the nexthop comparison api so that it calls the label-
comparison api. Adjust the label-comp api so that "no labels"
is "equal".

Signed-off-by: Mark Stapp <mjs@voltanet.io>
lib/nexthop.c
lib/nexthop.h

index d25b470277b40167b6064a8a4719f145c555072c..474abee3091c80e092b48c3b6c94d6ec223a41ab 100644 (file)
@@ -121,12 +121,17 @@ const char *nexthop_type_to_str(enum nexthop_types_t nh_type)
 /*
  * Check if the labels match for the 2 nexthops specified.
  */
-int nexthop_labels_match(struct nexthop *nh1, struct nexthop *nh2)
+int nexthop_labels_match(const struct nexthop *nh1, const struct nexthop *nh2)
 {
-       struct mpls_label_stack *nhl1, *nhl2;
+       const struct mpls_label_stack *nhl1, *nhl2;
 
        nhl1 = nh1->nh_label;
        nhl2 = nh2->nh_label;
+
+       /* No labels is a match */
+       if (!nhl1 && !nhl2)
+               return 1;
+
        if (!nhl1 || !nhl2)
                return 0;
 
@@ -212,7 +217,8 @@ bool nexthop_same(const struct nexthop *nh1, const struct nexthop *nh2)
                break;
        }
 
-       return true;
+       /* Compare labels too (if present) */
+       return (!!nexthop_labels_match(nh1, nh2));
 }
 
 /* Update nexthop with label information. */
index fd27ca207bf1a1ffc41ae76eddce681730f01792..9cdb040fc4dd18fecd215ed66aa40780ffdd2a57 100644 (file)
@@ -143,10 +143,12 @@ extern bool nexthop_same(const struct nexthop *nh1, const struct nexthop *nh2);
 extern const char *nexthop_type_to_str(enum nexthop_types_t nh_type);
 extern int nexthop_same_no_recurse(const struct nexthop *next1,
                                   const struct nexthop *next2);
-extern int nexthop_labels_match(struct nexthop *nh1, struct nexthop *nh2);
+extern int nexthop_labels_match(const struct nexthop *nh1,
+                               const struct nexthop *nh2);
 extern int nexthop_same_firsthop(struct nexthop *next1, struct nexthop *next2);
 
-extern const char *nexthop2str(const struct nexthop *nexthop, char *str, int size);
+extern const char *nexthop2str(const struct nexthop *nexthop,
+                              char *str, int size);
 extern struct nexthop *nexthop_next(struct nexthop *nexthop);
 extern unsigned int nexthop_level(struct nexthop *nexthop);