OVS commit dc14e92 updates route_table_handle_msg_callback to have a new 3rd parameter uint32_t table, without that handle_route_msg is unable to be used with route_table_dump_one_table, and therin the OVN fails to compile with OVS >=3.7.0.
This commit expects OVS to be at version 3.7.0. Signed-off-by: MJ Ponsonby <[email protected]> --- controller/route-exchange-netlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/route-exchange-netlink.c b/controller/route-exchange-netlink.c index 7ab0690f2..11ad86d06 100644 --- a/controller/route-exchange-netlink.c +++ b/controller/route-exchange-netlink.c @@ -209,7 +209,7 @@ struct route_msg_handle_data { }; static void -handle_route_msg(const struct route_table_msg *msg, void *data) +handle_route_msg(const struct route_table_msg *msg, void *data, uint32_t table_id) { struct route_msg_handle_data *handle_data = data; const struct route_data *rd = &msg->rd; -- 2.43.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
