diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2023-07-01 14:33:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-01 14:33:29 -0400 |
| commit | 69a826c485bf6f79f39be372ef6a98aed2322ff9 (patch) | |
| tree | 39b431b6f1f515e5471dccc2654dd70b78993d58 | |
| parent | e8cb6df4668869146d90c9a5e509d739320c91c0 (diff) | |
| parent | 64510b946772f18641873cb5e2de72758df8a90f (diff) | |
Merge pull request #13878 from opensourcerouting/fix/staticd_ecmp_rib_delete_update
zebra: Dump route details when deleting a route
| -rw-r--r-- | zebra/zebra_rib.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 357f112821..431c6b0500 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -3978,6 +3978,10 @@ void rib_delnode(struct route_node *rn, struct route_entry *re) if (IS_ZEBRA_DEBUG_RIB) rnode_debug(rn, re->vrf_id, "rn %p, re %p, removing", (void *)rn, (void *)re); + + if (IS_ZEBRA_DEBUG_RIB_DETAILED) + route_entry_dump(&rn->p, NULL, re); + SET_FLAG(re->status, ROUTE_ENTRY_REMOVED); afi = (rn->p.family == AF_INET) @@ -4123,8 +4127,8 @@ void _route_entry_dump(const char *func, union prefixconstptr pp, zclient_dump_route_flags(re->flags, flags_buf, sizeof(flags_buf)), _dump_re_status(re, status_buf, sizeof(status_buf))); - zlog_debug("%s: nexthop_num == %u, nexthop_active_num == %u", straddr, - nexthop_group_nexthop_num(&(re->nhe->nhg)), + zlog_debug("%s: tag == %u, nexthop_num == %u, nexthop_active_num == %u", + straddr, re->tag, nexthop_group_nexthop_num(&(re->nhe->nhg)), nexthop_group_active_nexthop_num(&(re->nhe->nhg))); /* Dump nexthops */ |
