Merge pull request #16881 from donaldsharp/zebra_nhg_install_fix

zebra: Pass in ZEBRA_ROUTE_MAX instead of true
This commit is contained in:
Jafar Al-Gharaibeh 2024-09-20 14:29:20 -05:00 committed by GitHub
commit bb995fb915
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1167,7 +1167,8 @@ static void zebra_nhg_handle_install(struct nhg_hash_entry *nhe, bool install)
"%s nh id %u (flags 0x%x) associated dependent NHG %pNG install", "%s nh id %u (flags 0x%x) associated dependent NHG %pNG install",
__func__, nhe->id, nhe->flags, __func__, nhe->id, nhe->flags,
rb_node_dep->nhe); rb_node_dep->nhe);
zebra_nhg_install_kernel(rb_node_dep->nhe, true); zebra_nhg_install_kernel(rb_node_dep->nhe,
ZEBRA_ROUTE_MAX);
} }
} }
} }