Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
route-table: Allow parsing routes without nexthop.
A recent commit[0] added condition to "route_table_parse__" function that causes it to throw error when parsing route without "nexthop information" (either RTA_OIF, RTA_GATEWAY, RTA_VIA or RTA_MULTIPATH). While this requirement is reasonable for regular routes, there are some route types that don't need nexthop. One of these types is "blackhole" route, that we intend to use in OVN for route advertising (RTN_BLACKHOLE)[1]. This change does not enforce the above-mentioned condition for those special route types that don't require "nexthop information". [0] openvswitch@91fc511 [1] https://mail.openvswitch.org/pipermail/ovs-dev/2025-January/419383.html Signed-off-by: Martin Kalcok <[email protected]> Signed-off-by: 0-day Robot <[email protected]>
- Loading branch information