X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=vswitchd%2Fbridge.c;h=6311ff3a42fcac1e3dab1ae1ef24cbbf5c5d6864;hb=e79a6c833e0d72370951d6f8841098103cbb0b2d;hp=9282c59d2023ba7ee22664d534c5e5f82feda211;hpb=1b84927316e090bc67cc6d923356857b52288670;p=sliver-openvswitch.git diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 9282c59d2..6311ff3a4 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -493,12 +493,12 @@ bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg) COVERAGE_INC(bridge_reconfigure); - ofproto_set_flow_eviction_threshold( - smap_get_int(&ovs_cfg->other_config, "flow-eviction-threshold", - OFPROTO_FLOW_EVICTION_THRESHOLD_DEFAULT)); + ofproto_set_flow_limit(smap_get_int(&ovs_cfg->other_config, "flow-limit", + OFPROTO_FLOW_LIMIT_DEFAULT)); ofproto_set_threads( - smap_get_int(&ovs_cfg->other_config, "n-handler-threads", 0)); + smap_get_int(&ovs_cfg->other_config, "n-handler-threads", 0), + smap_get_int(&ovs_cfg->other_config, "n-revalidator-threads", 0)); bridge_configure_flow_miss_model(smap_get(&ovs_cfg->other_config, "force-miss-model"));