Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

zebra: Pass in ZEBRA_ROUTE_MAX instead of true (backport #16881) #16884

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions zebra/zebra_nhg.c
Original file line number Diff line number Diff line change
Expand Up @@ -1132,7 +1132,12 @@ 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",
__func__, nhe->id, nhe->flags,
rb_node_dep->nhe);
<<<<<<< HEAD
zebra_nhg_install_kernel(rb_node_dep->nhe);
=======
zebra_nhg_install_kernel(rb_node_dep->nhe,
ZEBRA_ROUTE_MAX);
>>>>>>> 58722b9448 (zebra: Pass in ZEBRA_ROUTE_MAX instead of true)
}
}
}
Expand Down
Loading