summaryrefslogtreecommitdiff
path: root/zebra/zebra_nhg.c
diff options
context:
space:
mode:
Diffstat (limited to 'zebra/zebra_nhg.c')
-rw-r--r--zebra/zebra_nhg.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/zebra/zebra_nhg.c b/zebra/zebra_nhg.c
index bb507893b0..977ea425d5 100644
--- a/zebra/zebra_nhg.c
+++ b/zebra/zebra_nhg.c
@@ -2366,17 +2366,18 @@ static int nexthop_active(struct nexthop *nexthop, struct nhg_hash_entry *nhe,
if (is_default_prefix(&rn->p)
&& !rnh_resolve_via_default(zvrf, p.family)) {
if (IS_ZEBRA_DEBUG_RIB_DETAILED)
- zlog_debug(
- " :%s: Resolved against default route",
- __func__);
+ zlog_debug(" :%s: %pFX Resolved against default route",
+ __func__, &p);
return 0;
}
dest = rib_dest_from_rnode(rn);
- if (dest && dest->selected_fib
- && !CHECK_FLAG(dest->selected_fib->status,
- ROUTE_ENTRY_REMOVED)
- && dest->selected_fib->type != ZEBRA_ROUTE_TABLE)
+ if (dest && dest->selected_fib &&
+ (!CHECK_FLAG(dest->selected_fib->status,
+ ROUTE_ENTRY_REMOVED) ||
+ CHECK_FLAG(dest->selected_fib->status,
+ ROUTE_ENTRY_ROUTE_REPLACING)) &&
+ dest->selected_fib->type != ZEBRA_ROUTE_TABLE)
match = dest->selected_fib;
/* If there is no selected route or matched route is EGP, go up
@@ -2388,7 +2389,6 @@ static int nexthop_active(struct nexthop *nexthop, struct nhg_hash_entry *nhe,
} while (rn && rn->info == NULL);
if (rn)
route_lock_node(rn);
-
continue;
}