mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-06 07:37:54 +00:00
zebra: Make nexthop_active check use the same debug
When debugging why a route was not successfully installed into the rib, it would be preferable that the end user only have to turn on `debug zebra rib detail` as that is what we have been telling people to do for the last couple of years. Consolidate *back* to this. Signed-off-by: Donald Sharp <sharpd@nvidia.com>
This commit is contained in:
parent
81194feec9
commit
a24d04f4db
@ -1823,13 +1823,13 @@ static int nexthop_active(afi_t afi, struct route_entry *re,
|
||||
if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ONLINK)) {
|
||||
ifp = if_lookup_by_index(nexthop->ifindex, nexthop->vrf_id);
|
||||
if (!ifp) {
|
||||
if (IS_ZEBRA_DEBUG_NHG_DETAIL)
|
||||
if (IS_ZEBRA_DEBUG_RIB_DETAILED)
|
||||
zlog_debug("nexthop %pNHv marked onlink but nhif %u doesn't exist",
|
||||
nexthop, nexthop->ifindex);
|
||||
return 0;
|
||||
}
|
||||
if (!if_is_operative(ifp)) {
|
||||
if (IS_ZEBRA_DEBUG_NHG_DETAIL)
|
||||
if (IS_ZEBRA_DEBUG_RIB_DETAILED)
|
||||
zlog_debug("nexthop %pNHv marked onlink but nhif %s is not operational",
|
||||
nexthop, ifp->name);
|
||||
return 0;
|
||||
@ -1985,7 +1985,7 @@ static int nexthop_active(afi_t afi, struct route_entry *re,
|
||||
|| nexthop->type == NEXTHOP_TYPE_IPV6)
|
||||
nexthop->ifindex = newhop->ifindex;
|
||||
else if (nexthop->ifindex != newhop->ifindex) {
|
||||
if (IS_ZEBRA_DEBUG_NHG_DETAIL)
|
||||
if (IS_ZEBRA_DEBUG_RIB_DETAILED)
|
||||
zlog_debug(
|
||||
"%s: %pNHv given ifindex does not match nexthops ifindex found found: %pNHv",
|
||||
__func__, nexthop,
|
||||
@ -2011,7 +2011,7 @@ static int nexthop_active(afi_t afi, struct route_entry *re,
|
||||
|
||||
/* Only useful if installed */
|
||||
if (!CHECK_FLAG(match->status, ROUTE_ENTRY_INSTALLED)) {
|
||||
if (IS_ZEBRA_DEBUG_NHG_DETAIL)
|
||||
if (IS_ZEBRA_DEBUG_RIB_DETAILED)
|
||||
zlog_debug("%s: match %p (%u) not installed",
|
||||
__func__, match,
|
||||
match->nhe->id);
|
||||
|
Loading…
Reference in New Issue
Block a user