aboutsummaryrefslogtreecommitdiff
path: root/ofproto/ofproto.h
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2013-06-04 13:22:46 -0700
committerEthan Jackson <ethan@nicira.com>2013-06-07 13:38:45 -0700
commit380f49c4a1ffaf5efa136985cff92de52bc8b582 (patch)
tree46c0cf4a177fa1cdb6327ec05dd8ea4ea9b16765 /ofproto/ofproto.h
parentdc54ef36cb108f9ac594ac8c34c719880a9a7bd5 (diff)
ofproto-dpif: Set flow-eviction-threshold globally.
With the single datapath, it no longer makes sense to have a per ofproto flow eviction threshold. This patch moves the flow eviction threshold to the Open_vSwitch table making the setting global, though still treated separately for each ofproto. A future patch will unify flow eviction on a per datapath basis. Signed-off-by: Ethan Jackson <ethan@nicira.com>
Diffstat (limited to 'ofproto/ofproto.h')
-rw-r--r--ofproto/ofproto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ofproto/ofproto.h b/ofproto/ofproto.h
index 18241e76..5f8244c5 100644
--- a/ofproto/ofproto.h
+++ b/ofproto/ofproto.h
@@ -236,7 +236,7 @@ void ofproto_reconnect_controllers(struct ofproto *);
void ofproto_set_extra_in_band_remotes(struct ofproto *,
const struct sockaddr_in *, size_t n);
void ofproto_set_in_band_queue(struct ofproto *, int queue_id);
-void ofproto_set_flow_eviction_threshold(struct ofproto *, unsigned threshold);
+void ofproto_set_flow_eviction_threshold(unsigned threshold);
void ofproto_set_forward_bpdu(struct ofproto *, bool forward_bpdu);
void ofproto_set_mac_table_config(struct ofproto *, unsigned idle_time,
size_t max_entries);