diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2021-07-07 16:52:24 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-07-15 08:50:09 -0400 | 
| commit | b59839af7d4e6d26795d5c36aa31043d633c9a6d (patch) | |
| tree | 73dd8a7c62505fa74916261df7b404052d761098 /zebra/zebra_rnh.c | |
| parent | 5f179a1a6169453784bacea0f427a7e8f228c94e (diff) | |
zebra: When passing lookup information back pass the fully resolved
In the reachability code we auto pass back the fully resolved
nexthops.  Modify the ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB code
to do the exact same thing so that the zclient_lookup_nexthop
code does not need to recursively look for the data that
zebra already has.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_rnh.c')
| -rw-r--r-- | zebra/zebra_rnh.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/zebra/zebra_rnh.c b/zebra/zebra_rnh.c index 41d55c2e6c..017a4aae7f 100644 --- a/zebra/zebra_rnh.c +++ b/zebra/zebra_rnh.c @@ -598,8 +598,7 @@ static const int RNH_INVALID_NH_FLAGS = (NEXTHOP_FLAG_RECURSIVE |  					 NEXTHOP_FLAG_DUPLICATE |  					 NEXTHOP_FLAG_RNH_FILTERED); -static bool rnh_nexthop_valid(const struct route_entry *re, -			      const struct nexthop *nh) +bool rnh_nexthop_valid(const struct route_entry *re, const struct nexthop *nh)  {  	return (CHECK_FLAG(re->status, ROUTE_ENTRY_INSTALLED)  		&& CHECK_FLAG(nh->flags, NEXTHOP_FLAG_ACTIVE)  | 
