diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2023-08-11 11:21:03 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-08-11 11:21:03 -0400 |
| commit | d381190a5549163ac97945fcb4d716da5c04c46d (patch) | |
| tree | ab989c894beece8319a79d9a58e7eeaff123747c /zebra/zebra_routemap.h | |
| parent | 17bcaad841f4f420ce441cfd2a471e0a385afb0b (diff) | |
zebra: Remove tag from zebra_rmap_obj
The tag value in all cases was being set to the re->tag.
re is already stored, so let's just use that.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_routemap.h')
| -rw-r--r-- | zebra/zebra_routemap.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/zebra/zebra_routemap.h b/zebra/zebra_routemap.h index 3fa1476896..fceb53c841 100644 --- a/zebra/zebra_routemap.h +++ b/zebra/zebra_routemap.h @@ -23,11 +23,12 @@ extern void zebra_del_import_table_route_map(afi_t afi, uint32_t table); extern route_map_result_t zebra_import_table_route_map_check( int family, struct route_entry *re, const struct prefix *p, - struct nexthop *nexthop, route_tag_t tag, const char *rmap_name); -extern route_map_result_t -zebra_route_map_check(afi_t family, struct route_entry *re, - const struct prefix *p, struct nexthop *nexthop, - struct zebra_vrf *zvrf, route_tag_t tag); + struct nexthop *nexthop, const char *rmap_name); +extern route_map_result_t zebra_route_map_check(afi_t family, + struct route_entry *re, + const struct prefix *p, + struct nexthop *nexthop, + struct zebra_vrf *zvrf); extern route_map_result_t zebra_nht_route_map_check(afi_t afi, int client_proto, const struct prefix *p, struct zebra_vrf *zvrf, |
